akka.remote.testconductor
Class TestConductor$

java.lang.Object
  extended by akka.remote.testconductor.TestConductor$
All Implemented Interfaces:
ExtensionId<TestConductorExt>, ExtensionIdProvider

public class TestConductor$
extends java.lang.Object
implements ExtensionId<TestConductorExt>, ExtensionIdProvider

Access to the TestConductorExt extension:


 val tc = TestConductor(system)
 tc.startController(numPlayers)
 // OR
 tc.startClient(conductorPort)
 


Field Summary
static TestConductor$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
TestConductor$()
           
 
Method Summary
 TestConductorExt apply(ActorContext ctx)
           
 TestConductorExt createExtension(ExtendedActorSystem system)
          Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.
 TestConductorExt get(ActorSystem system)
          Java API: retrieve the TestConductor extension for the given system.
 TestConductor$ lookup()
          Returns the canonical ExtensionId for this Extension
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface akka.actor.ExtensionId
apply, equals, hashCode
 

Field Detail

MODULE$

public static final TestConductor$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

TestConductor$

public TestConductor$()
Method Detail

lookup

public TestConductor$ lookup()
Description copied from interface: ExtensionIdProvider
Returns the canonical ExtensionId for this Extension

Specified by:
lookup in interface ExtensionIdProvider

createExtension

public TestConductorExt createExtension(ExtendedActorSystem system)
Description copied from interface: ExtensionId
Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.

Specified by:
createExtension in interface ExtensionId<TestConductorExt>

get

public TestConductorExt get(ActorSystem system)
Java API: retrieve the TestConductor extension for the given system.

Specified by:
get in interface ExtensionId<TestConductorExt>

apply

public TestConductorExt apply(ActorContext ctx)