Dispatcher constructor

Dispatcher(
  1. String _endpoint,
  2. Map<String, dynamic> options
)

Implementation

Dispatcher(this._endpoint, Map<String, dynamic> options) {
  _logger.info('Dispatcher: Creating dispatcher for endpoint: $_endpoint');
  _logger.info('Dispatcher: Options: $options');
  _initializeTransports();
  _logger.info('Dispatcher: Dispatcher created successfully');
}