- EchoActor() - Constructor for class akka.testkit.TestActors.EchoActor
-
- echoActorProps() - Method in class akka.testkit.TestActors$
-
- echoActorProps() - Static method in class akka.testkit.TestActors
-
- end() - Method in interface akka.testkit.TestKitBase
-
- enqueue(ActorRef, Envelope) - Method in class akka.testkit.CallingThreadMailbox
-
- error(String, String, String, String, int) - Method in class akka.testkit.EventFilter$
-
Create a filter for Error events which do not have a cause set (i.e.
- error(String, String, String, String, int) - Static method in class akka.testkit.EventFilter
-
Create a filter for Error events which do not have a cause set (i.e.
- ErrorFilter - Class in akka.testkit
-
Filter which matches Error events, if they satisfy the given criteria:
throwable
applies an upper bound on the type of exception contained in the Error event
source
, if given, applies a filter on the event’s origin
message
applies a filter on the event’s message (either
with String.startsWith or Regex.findFirstIn().isDefined); if the message
itself does not match, the match is retried with the contained Exception’s
message; if both are null
, the filter always matches if at
the same time the Exception’s stack trace is empty (this catches
JVM-omitted “fast-throw” exceptions)
If you want to match all Error events, the most efficient is to use Left("")
.
- ErrorFilter(Class<?>, Option<String>, Either<String, Regex>, boolean, int) - Constructor for class akka.testkit.ErrorFilter
-
- ErrorFilter(Class<?>, String, String, boolean, boolean, int) - Constructor for class akka.testkit.ErrorFilter
-
Java API: create an ErrorFilter
- ErrorFilter(Class<?>) - Constructor for class akka.testkit.ErrorFilter
-
Java API: filter only on the given type of exception
- ErrorFilter$ - Class in akka.testkit
-
- ErrorFilter$() - Constructor for class akka.testkit.ErrorFilter$
-
- EventFilter - Class in akka.testkit
-
Facilities for selectively filtering out expected events from logging so
that you can keep your test run’s console output clean and do not miss real
error messages.
- EventFilter(int) - Constructor for class akka.testkit.EventFilter
-
- EventFilter(Class<?>) - Constructor for class akka.testkit.JavaTestKit.EventFilter
-
- EventFilter$ - Class in akka.testkit
-
Facilities for selectively filtering out expected events from logging so
that you can keep your test run’s console output clean and do not miss real
error messages.
- EventFilter$() - Constructor for class akka.testkit.EventFilter$
-
- exec() - Method in class akka.testkit.JavaTestKit.EventFilter
-
- executeTask(TaskInvocation) - Method in class akka.testkit.CallingThreadDispatcher
-
- ExpectMsg(String) - Constructor for class akka.testkit.JavaTestKit.ExpectMsg
-
- ExpectMsg(Duration, String) - Constructor for class akka.testkit.JavaTestKit.ExpectMsg
-
- expectMsg(T) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsg(remainingOrDefault, obj)
, but correctly treating the timeFactor.
- expectMsg(FiniteDuration, T) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it equals the
given object.
- expectMsg(FiniteDuration, String, T) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it equals the
given object.
- expectMsg_internal(Duration, T, Option<String>) - Method in interface akka.testkit.TestKitBase
-
- expectMsgAllClassOf(Seq<Class<? extends T>>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgAllClassOf(remainingOrDefault, obj...)
, but correctly treating the timeFactor.
- expectMsgAllClassOf(FiniteDuration, Seq<Class<? extends T>>) - Method in interface akka.testkit.TestKitBase
-
Receive a number of messages from the test actor matching the given
number of classes and assert that for each given class one is received
which is of that class (equality, not conformance).
- expectMsgAllConformingOf(Seq<Class<? extends T>>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgAllConformingOf(remainingOrDefault, obj...)
, but correctly treating the timeFactor.
- expectMsgAllConformingOf(FiniteDuration, Seq<Class<? extends T>>) - Method in interface akka.testkit.TestKitBase
-
Receive a number of messages from the test actor matching the given
number of classes and assert that for each given class one is received
which conforms to that class (and vice versa).
- expectMsgAllOf(Object...) - Method in class akka.testkit.JavaTestKit
-
Same as expectMsgAllOf(remainingOrDefault(), obj...)
, but correctly
treating the timeFactor.
- expectMsgAllOf(FiniteDuration, Object...) - Method in class akka.testkit.JavaTestKit
-
Receive a number of messages from the test actor matching the given number
of objects and assert that for each given object one is received which
equals it and vice versa.
- expectMsgAllOf(Seq<T>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgAllOf(remainingOrDefault, obj...)
, but correctly treating the timeFactor.
- expectMsgAllOf(FiniteDuration, Seq<T>) - Method in interface akka.testkit.TestKitBase
-
Receive a number of messages from the test actor matching the given
number of objects and assert that for each given object one is received
which equals it and vice versa.
- expectMsgAllOf_internal(FiniteDuration, Seq<T>) - Method in interface akka.testkit.TestKitBase
-
- expectMsgAnyClassOf(Class<? extends T>...) - Method in class akka.testkit.JavaTestKit
-
Same as expectMsgAnyClassOf(remainingOrDefault(), obj...)
, but
correctly treating the timeFactor.
- expectMsgAnyClassOf(FiniteDuration, Class<?>...) - Method in class akka.testkit.JavaTestKit
-
Receive one message from the test actor and assert that it conforms to one
of the given classes.
- expectMsgAnyClassOf(Seq<Class<? extends C>>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgAnyClassOf(remainingOrDefault, obj...)
, but correctly treating the timeFactor.
- expectMsgAnyClassOf(FiniteDuration, Seq<Class<? extends C>>) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it conforms to
one of the given classes.
- expectMsgAnyClassOf_internal(FiniteDuration, Seq<Class<? extends C>>) - Method in interface akka.testkit.TestKitBase
-
- expectMsgAnyOf(Object...) - Method in class akka.testkit.JavaTestKit
-
Same as expectMsgAnyOf(remainingOrDefault(), obj...)
, but correctly
treating the timeFactor.
- expectMsgAnyOf(FiniteDuration, Object...) - Method in class akka.testkit.JavaTestKit
-
Receive one message from the test actor and assert that it equals one of
the given objects.
- expectMsgAnyOf(Seq<T>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgAnyOf(remainingOrDefault, obj...)
, but correctly treating the timeFactor.
- expectMsgAnyOf(FiniteDuration, Seq<T>) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it equals one of
the given objects.
- expectMsgAnyOf_internal(FiniteDuration, Seq<T>) - Method in interface akka.testkit.TestKitBase
-
- expectMsgClass(Class<T>) - Method in class akka.testkit.JavaTestKit
-
Same as expectMsgClass(remainingOrDefault(), clazz)
, but correctly
treating the timeFactor.
- expectMsgClass(FiniteDuration, Class<T>) - Method in class akka.testkit.JavaTestKit
-
Receive one message from the test actor and assert that it conforms to the
given class.
- expectMsgClass(Class<C>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgClass(remainingOrDefault, c)
, but correctly treating the timeFactor.
- expectMsgClass(FiniteDuration, Class<C>) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it conforms to
the given class.
- expectMsgClass_internal(FiniteDuration, Class<C>) - Method in interface akka.testkit.TestKitBase
-
- expectMsgEquals(T) - Method in class akka.testkit.JavaTestKit
-
Same as expectMsgEquals(remainingOrDefault(), obj)
, but correctly
treating the timeFactor.
- expectMsgEquals(FiniteDuration, T) - Method in class akka.testkit.JavaTestKit
-
Receive one message from the test actor and assert that it equals the given
object.
- expectMsgPF(Duration, String, PartialFunction<Object, T>) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that the given
partial function accepts it.
- expectMsgType(ClassTag<T>) - Method in interface akka.testkit.TestKitBase
-
Same as expectMsgType[T](remainingOrDefault)
, but correctly treating the timeFactor.
- expectMsgType(FiniteDuration, ClassTag<T>) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it conforms to the
given type (after erasure).
- expectNoMsg() - Method in class akka.testkit.JavaTestKit
-
Same as expectNoMsg(remainingOrDefault())
, but correctly treating the
timeFactor.
- expectNoMsg(FiniteDuration) - Method in class akka.testkit.JavaTestKit
-
Assert that no message is received for the specified time.
- expectNoMsg() - Method in interface akka.testkit.TestKitBase
-
Same as expectNoMsg(remainingOrDefault)
, but correctly treating the timeFactor.
- expectNoMsg(FiniteDuration) - Method in interface akka.testkit.TestKitBase
-
Assert that no message is received for the specified time.
- expectNoMsg_internal(FiniteDuration) - Method in interface akka.testkit.TestKitBase
-
- expectTerminated(Duration, ActorRef) - Method in class akka.testkit.JavaTestKit
-
Assert that the given ActorRef is Terminated within the specified time.
- expectTerminated(ActorRef) - Method in class akka.testkit.JavaTestKit
-
Same as expectTerminated(remainingOrDefault(), target)
,
but correctly treating the timeFactor.
- expectTerminated(ActorRef, Duration) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the test actor and assert that it is the Terminated message of the given ActorRef.
- mailboxType() - Method in class akka.testkit.CallingThreadMailbox
-
- match(A) - Method in class akka.testkit.CachingPartialFunction
-
- match(Object) - Method in class akka.testkit.JavaTestKit.ExpectMsg
-
- match(Object) - Method in class akka.testkit.JavaTestKit.ReceiveWhile
-
- matches(Logging.LogEvent) - Method in class akka.testkit.CustomEventFilter
-
- matches(Logging.LogEvent) - Method in class akka.testkit.DeadLettersFilter
-
- matches(Logging.LogEvent) - Method in class akka.testkit.DebugFilter
-
- matches(Logging.LogEvent) - Method in class akka.testkit.ErrorFilter
-
- matches(Logging.LogEvent) - Method in class akka.testkit.EventFilter
-
This method decides whether to filter the event (true
) or not
(false
).
- matches(Logging.LogEvent) - Method in class akka.testkit.InfoFilter
-
- matches(String) - Method in class akka.testkit.JavaTestKit.EventFilter
-
- matches(Logging.LogEvent) - Method in class akka.testkit.WarningFilter
-
- message() - Method in class akka.testkit.DebugFilter
-
- message() - Method in class akka.testkit.ErrorFilter
-
- message() - Method in class akka.testkit.EventFilter
-
- message() - Method in class akka.testkit.InfoFilter
-
- message(String) - Method in class akka.testkit.JavaTestKit.EventFilter
-
- message() - Method in class akka.testkit.WarningFilter
-
- messageClass() - Method in class akka.testkit.DeadLettersFilter
-
- messageQueue() - Method in class akka.testkit.CallingThreadMailbox
-
This is only a marker to be put in the messageQueue’s stead to make error
messages pertaining to violated mailbox type requirements less cryptic.
- MODULE$ - Static variable in class akka.testkit.CallingThreadDispatcher$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.CallingThreadDispatcherQueues$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.CustomEventFilter$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.DeadLettersFilter$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.DebugFilter$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.ErrorFilter$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.EventFilter$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.InfoFilter$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.SocketUtil$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.KeepRunning$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.NoAutoPilot$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.NullMessage$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.RealMessage$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.SetAutoPilot$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.SetIgnore$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.UnWatch$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActor.Watch$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActorRef$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestActors$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestBarrier$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestEvent$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestEvent.Mute$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestEvent.UnMute$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestFSMRef$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestKit$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestKitExtension$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestLatch$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.TestProbe$
-
Static reference to the singleton instance of this Scala object.
- MODULE$ - Static variable in class akka.testkit.WarningFilter$
-
Static reference to the singleton instance of this Scala object.
- msg() - Method in interface akka.testkit.TestActor.Message
-
- msg() - Method in class akka.testkit.TestActor.NullMessage$
-
- msg() - Method in class akka.testkit.TestActor.RealMessage
-
- msgAvailable() - Method in class akka.testkit.JavaTestKit
-
Query queue status.
- msgAvailable() - Method in interface akka.testkit.TestKitBase
-
Query queue status.
- Mute(Seq<EventFilter>) - Constructor for class akka.testkit.TestEvent.Mute
-
- Mute(Iterable<EventFilter>) - Constructor for class akka.testkit.TestEvent.Mute
-
Java API: create a Mute command from a list of filters
- Mute$() - Constructor for class akka.testkit.TestEvent.Mute$
-
- randomName() - Method in class akka.testkit.TestActorRef$
-
- randomName() - Static method in class akka.testkit.TestActorRef
-
- ready(Duration, CanAwait) - Method in class akka.testkit.TestLatch
-
- RealMessage(Object, ActorRef) - Constructor for class akka.testkit.TestActor.RealMessage
-
- RealMessage$() - Constructor for class akka.testkit.TestActor.RealMessage$
-
- receive() - Method in class akka.testkit.TestActor
-
- receive(Object) - Method in class akka.testkit.TestActorRef
-
Directly inject messages into actor receive behavior.
- receive(Object, ActorRef) - Method in class akka.testkit.TestActorRef
-
Directly inject messages into actor receive behavior.
- receive() - Method in class akka.testkit.TestActors.EchoActor
-
- receive() - Method in class akka.testkit.TestActors.ForwardActor
-
- receive() - Method in class akka.testkit.TestEventListener
-
- receiveN(int) - Method in class akka.testkit.JavaTestKit
-
Same as receiveN(n, remaining())
, but correctly treating the
timeFactor.
- receiveN(int, FiniteDuration) - Method in class akka.testkit.JavaTestKit
-
Receive N messages in a row before the given deadline.
- receiveN(int) - Method in interface akka.testkit.TestKitBase
-
Same as receiveN(n, remaining)
but correctly taking into account
Duration.timeFactor.
- receiveN(int, FiniteDuration) - Method in interface akka.testkit.TestKitBase
-
Receive N messages in a row before the given deadline.
- receiveN_internal(int, Duration) - Method in interface akka.testkit.TestKitBase
-
- receiveOne(Duration) - Method in class akka.testkit.JavaTestKit
-
Receive one message from the internal queue of the TestActor.
- receiveOne(Duration) - Method in interface akka.testkit.TestKitBase
-
Receive one message from the internal queue of the TestActor.
- ReceiveWhile(Class<T>) - Constructor for class akka.testkit.JavaTestKit.ReceiveWhile
-
- ReceiveWhile(Class<T>, Duration) - Constructor for class akka.testkit.JavaTestKit.ReceiveWhile
-
- ReceiveWhile(Class<T>, Duration, int) - Constructor for class akka.testkit.JavaTestKit.ReceiveWhile
-
- ReceiveWhile(Class<T>, Duration, Duration, int) - Constructor for class akka.testkit.JavaTestKit.ReceiveWhile
-
- receiveWhile(Duration, Duration, int, PartialFunction<Object, T>) - Method in interface akka.testkit.TestKitBase
-
Receive a series of messages until one does not match the given partial
function or the idle timeout is met (disabled by default) or the overall
maximum duration is elapsed or expected messages count is reached.
- ref() - Method in class akka.testkit.TestActor.UnWatch
-
- ref() - Method in class akka.testkit.TestActor.Watch
-
- ref() - Method in class akka.testkit.TestProbe
-
Shorthand to get the testActor.
- register(ActorCell) - Method in class akka.testkit.CallingThreadDispatcher
-
- registerForExecution(Mailbox, boolean, boolean) - Method in class akka.testkit.CallingThreadDispatcher
-
- registerQueue(CallingThreadMailbox, MessageQueue) - Method in class akka.testkit.CallingThreadDispatcherQueues
-
- remaining() - Method in class akka.testkit.JavaTestKit
-
Obtain time remaining for execution of the innermost enclosing
Within
block or missing that it returns the properly dilated
default for this case from settings (key
"akka.test.single-expect-default").
- remaining() - Method in interface akka.testkit.TestKitBase
-
Obtain time remaining for execution of the innermost enclosing within
block or throw an AssertionError
if no within
block surrounds this
call.
- remainingOr(FiniteDuration) - Method in class akka.testkit.JavaTestKit
-
Obtain time remaining for execution of the innermost enclosing
Within
block or missing that it returns the given duration.
- remainingOr(FiniteDuration) - Method in interface akka.testkit.TestKitBase
-
Obtain time remaining for execution of the innermost enclosing within
block or missing that it returns the given duration.
- remainingOrDefault() - Method in interface akka.testkit.TestKitBase
-
Obtain time remaining for execution of the innermost enclosing within
block or missing that it returns the properly dilated default for this
case from settings (key "akka.test.single-expect-default").
- remainingOrDilated(Duration) - Method in interface akka.testkit.TestKitBase
-
- removeFilter(EventFilter) - Method in class akka.testkit.TestEventListener
-
- reply(Object) - Method in class akka.testkit.JavaTestKit
-
- reply(Object) - Method in class akka.testkit.TestProbe
-
Send message to the sender of the last dequeued message.
- reset() - Method in class akka.testkit.TestBarrier
-
- reset() - Method in class akka.testkit.TestLatch
-
- result(Duration, CanAwait) - Method in class akka.testkit.TestLatch
-
- resume(ActorCell) - Method in class akka.testkit.CallingThreadDispatcher
-
- run() - Method in class akka.testkit.JavaTestKit.EventFilter
-
- run() - Method in class akka.testkit.JavaTestKit.Within
-
- run(ActorRef, Object) - Method in class akka.testkit.TestActor.AutoPilot
-
- run(ActorRef, Object) - Method in class akka.testkit.TestActor.KeepRunning$
-
- run(ActorRef, Object) - Method in class akka.testkit.TestActor.NoAutoPilot$
-
- self() - Method in class akka.testkit.CallingThreadMailbox
-
- self() - Method in interface akka.testkit.ImplicitSender
-
- send(ActorRef, Object) - Method in class akka.testkit.JavaTestKit
-
- send(ActorRef, Object) - Method in class akka.testkit.TestProbe
-
Send message to an actor while using the probe's TestActor as the sender.
- sender() - Method in interface akka.testkit.TestActor.Message
-
- sender() - Method in class akka.testkit.TestActor.NullMessage$
-
- sender() - Method in class akka.testkit.TestActor.RealMessage
-
- sender() - Method in class akka.testkit.TestProbe
-
Get sender of last received message.
- setAutoPilot(TestActor.AutoPilot) - Method in class akka.testkit.JavaTestKit
-
Install an AutoPilot to drive the testActor: the AutoPilot will be run for
each received message and can be used to send or forward messages, etc.
- SetAutoPilot(TestActor.AutoPilot) - Constructor for class akka.testkit.TestActor.SetAutoPilot
-
- setAutoPilot(TestActor.AutoPilot) - Method in interface akka.testkit.TestKitBase
-
Install an AutoPilot to drive the testActor: the AutoPilot will be run
for each received message and can be used to send or forward messages,
etc.
- SetAutoPilot$() - Constructor for class akka.testkit.TestActor.SetAutoPilot$
-
- SetIgnore(Option<PartialFunction<Object, Object>>) - Constructor for class akka.testkit.TestActor.SetIgnore
-
- SetIgnore$() - Constructor for class akka.testkit.TestActor.SetIgnore$
-
- setState(S, D, FiniteDuration, Option<FSM.Reason>) - Method in class akka.testkit.TestFSMRef
-
Change FSM state; any value left out defaults to the current FSM state
(timeout defaults to None).
- setTimer(String, Object, FiniteDuration, boolean) - Method in class akka.testkit.TestFSMRef
-
Proxy for FSM.setTimer(java.lang.String, java.lang.Object, scala.concurrent.duration.FiniteDuration, boolean)
.
- shutdown() - Method in class akka.testkit.CallingThreadDispatcher
-
- shutdown(ActorSystem, Duration, Boolean) - Method in class akka.testkit.JavaTestKit
-
Shut down an actor system and wait for termination.
- shutdown(ActorSystem) - Method in class akka.testkit.JavaTestKit
-
- shutdown(ActorSystem, Duration) - Method in class akka.testkit.JavaTestKit
-
- shutdown(ActorSystem, Boolean) - Method in class akka.testkit.JavaTestKit
-
- shutdown(ActorSystem, Duration, boolean) - Method in interface akka.testkit.TestKitBase
-
Shut down an actor system and wait for termination.
- shutdownActorSystem(ActorSystem, Duration, Boolean) - Static method in class akka.testkit.JavaTestKit
-
Shut down an actor system and wait for termination.
- shutdownActorSystem(ActorSystem) - Static method in class akka.testkit.JavaTestKit
-
- shutdownActorSystem(ActorSystem, Duration) - Static method in class akka.testkit.JavaTestKit
-
- shutdownActorSystem(ActorSystem, Boolean) - Static method in class akka.testkit.JavaTestKit
-
- shutdownActorSystem(ActorSystem, Duration, boolean) - Method in class akka.testkit.TestKit$
-
Shut down an actor system and wait for termination.
- shutdownActorSystem(ActorSystem, Duration, boolean) - Static method in class akka.testkit.TestKit
-
Shut down an actor system and wait for termination.
- shutdownTimeout() - Method in class akka.testkit.CallingThreadDispatcher
-
- SingleExpectDefaultTimeout() - Method in class akka.testkit.TestKitSettings
-
- SocketUtil - Class in akka.testkit
-
Utilities to get free socket address.
- SocketUtil() - Constructor for class akka.testkit.SocketUtil
-
- SocketUtil$ - Class in akka.testkit
-
Utilities to get free socket address.
- SocketUtil$() - Constructor for class akka.testkit.SocketUtil$
-
- source() - Method in class akka.testkit.DebugFilter
-
- source() - Method in class akka.testkit.ErrorFilter
-
- source() - Method in class akka.testkit.EventFilter
-
- source() - Method in class akka.testkit.InfoFilter
-
- source() - Method in class akka.testkit.WarningFilter
-
- startsWith(String) - Method in class akka.testkit.JavaTestKit.EventFilter
-
- stateData() - Method in class akka.testkit.TestFSMRef
-
Get current state data of this FSM.
- stateName() - Method in class akka.testkit.TestFSMRef
-
Get current state name of this FSM.
- suspend(ActorCell) - Method in class akka.testkit.CallingThreadDispatcher
-
- suspendSwitch() - Method in class akka.testkit.CallingThreadMailbox
-
- system() - Method in class akka.testkit.CallingThreadMailbox
-
- system() - Method in class akka.testkit.TestKit
-
- system() - Method in interface akka.testkit.TestKitBase
-
- systemDispatch(ActorCell, SystemMessage) - Method in class akka.testkit.CallingThreadDispatcher
-