- Agent<T> - Class in akka.agent
-
The Agent class was inspired by agents in Clojure.
- Agent() - Constructor for class akka.agent.Agent
-
- Agent$ - Class in akka.agent
-
- Agent$() - Constructor for class akka.agent.Agent$
-
- akka.agent - package akka.agent
-
- alter(T) - Method in class akka.agent.Agent
-
Dispatch an update to the internal state, and return a Future where
that new state can be obtained.
- alter(Function1<T, T>) - Method in class akka.agent.Agent
-
Dispatch a function to update the internal state, and return a Future where
that new state can be obtained.
- alterOff(Function1<T, T>, ExecutionContext) - Method in class akka.agent.Agent
-
Dispatch a function to update the internal state but on its own thread,
and return a Future where that new state can be obtained.
- apply(T, ExecutionContext) - Method in class akka.agent.Agent$
-
Factory method for creating an Agent.
- apply() - Method in class akka.agent.Agent
-
Read the internal state of the agent.