Skip navigation links
A C F G M S 

A

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.

C

create(T, ExecutionContext) - Method in class akka.agent.Agent$
Java API: Factory method for creating an Agent.
create(T, ExecutionContext) - Static method in class akka.agent.Agent
Java API: Factory method for creating an Agent.

F

flatMap(Function1<T, Agent<B>>) - Method in class akka.agent.Agent
Flatmap this agent to a new agent, applying the function to the internal state.
foreach(Function1<T, U>) - Method in class akka.agent.Agent
Applies the function to the internal state.
future() - Method in class akka.agent.Agent
A future to the current value that will be completed after any currently queued updates.

G

get() - Method in class akka.agent.Agent
Java API: Read the internal state of the agent.

M

map(Function1<T, B>) - Method in class akka.agent.Agent
Map this agent to a new agent, applying the function to the internal state.
MODULE$ - Static variable in class akka.agent.Agent$
Static reference to the singleton instance of this Scala object.

S

send(T) - Method in class akka.agent.Agent
Dispatch a new value for the internal state.
send(Function1<T, T>) - Method in class akka.agent.Agent
Dispatch a function to update the internal state.
sendOff(Function1<T, T>, ExecutionContext) - Method in class akka.agent.Agent
Dispatch a function to update the internal state but on its own thread.
A C F G M S 
Skip navigation links