configure method
Future<void>
configure({
- required DeploymentService deploymentService,
- required DeviceDataCollectorFactory deviceController,
- TRegistration? registration,
Configure this ClientManager by specifying:
deploymentService
- where to get study deploymentsdeviceController
that handles devices connected to this clientregistration
- a unique device registration for this client device
Implementation
@mustCallSuper
Future<void> configure({
required DeploymentService deploymentService,
required DeviceDataCollectorFactory deviceController,
TRegistration? registration,
}) async {
this._deploymentService = deploymentService;
this._deviceController = deviceController;
this.registration = registration;
}