SyncBox<T> constructor

SyncBox<T>(
  1. Box<T> _box
)

Creates a SyncBox that acts as a synchronized proxy for the given _box.

Implementation

SyncBox(this._box);