VoltronBridgeManager constructor
VoltronBridgeManager(
- EngineContext context,
- VoltronBundleLoader? coreBundleLoader,
- int groupId,
- int id, {
- VoltronThirdPartyAdapter? thirdPartyAdapter,
- int bridgeType = kBridgeTypeNormal,
- bool isDevModule = false,
- String debugServerHost = '',
Implementation
VoltronBridgeManager(
EngineContext context,
VoltronBundleLoader? coreBundleLoader,
int groupId,
int id, {
VoltronThirdPartyAdapter? thirdPartyAdapter,
int bridgeType = kBridgeTypeNormal,
bool isDevModule = false,
String debugServerHost = '',
}) : _context = context,
_coreBundleLoader = coreBundleLoader,
_groupId = groupId,
_engineId = id,
_isDevModule = isDevModule,
_debugServerHost = debugServerHost,
_thirdPartyAdapter = thirdPartyAdapter,
_isSingleThread = bridgeType == kBridgeTypeSingleThread {
initCodeCacheDir();
}