interface OrchestrationPowers {
    portAllocator: Remote<Guarded<{
        allocateCustomIBCPort(specifiedName?): Vow<any>;
        allocateCustomLocalPort(specifiedName?): Vow<any>;
        allocateICAControllerPort(): Vow<any>;
        allocateICQControllerPort(): Vow<any>;
    }>>;
}

Properties

Properties

portAllocator: Remote<Guarded<{
    allocateCustomIBCPort(specifiedName?): Vow<any>;
    allocateCustomLocalPort(specifiedName?): Vow<any>;
    allocateICAControllerPort(): Vow<any>;
    allocateICQControllerPort(): Vow<any>;
}>>