IsolateBundleConfiguration constructor

const IsolateBundleConfiguration(
  1. SendPort toCaller
)

Base configuration for creating an isolate bundle.

The IsolateBundleFactory will send this configuration to the isolate when it is spawned. The toCaller is used to send a SendPort back to the caller.

In the entry-point of the isolate the activateOnCurrentIsolate should be called to set up the SendPort and ReceivePort.

Implementation

const IsolateBundleConfiguration(this.toCaller);