Package akka.event
Class Logging.StandardOutLogger
- java.lang.Object
-
- akka.actor.ActorRef
-
- akka.actor.InternalActorRef
-
- akka.event.Logging.StandardOutLogger
-
- All Implemented Interfaces:
ActorRefScope
,LocalRef
,MinimalActorRef
,ScalaActorRef
,Logging.StdOutLogger
,java.io.Serializable
,java.lang.Comparable<ActorRef>
- Enclosing class:
- Logging
public static class Logging.StandardOutLogger extends InternalActorRef implements MinimalActorRef, Logging.StdOutLogger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StandardOutLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
$bang(java.lang.Object message, ActorRef sender)
Sends a one-way asynchronous message.ActorRef
$bang$default$2(java.lang.Object message)
ActorPath
path()
Returns the path for this actor (from this actor up to the root actor).ActorRefProvider
provider()
Get a reference to the actor ref provider which created this ref.java.lang.String
toString()
protected java.lang.Object
writeReplace()
-
Methods inherited from class akka.actor.InternalActorRef
getChild, getParent, isLocal, isTerminated, restart, resume, sendSystemMessage, start, stop, suspend
-
Methods inherited from class akka.actor.ActorRef
compareTo, equals, forward, hashCode, noSender, tell
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface akka.event.Logging.StdOutLogger
debug, error, formatMDC, info, print, timestamp, warning
-
Methods inherited from interface akka.actor.MinimalActorRef
getChild, getParent, isTerminated, restart, resume, sendSystemMessage, start, stop, suspend
-
-
-
-
Method Detail
-
$bang
public void $bang(java.lang.Object message, ActorRef sender)
Description copied from interface:ScalaActorRef
Sends a one-way asynchronous message. E.g. fire-and-forget semantics.If invoked from within an actor then the actor reference is implicitly passed on as the implicit 'sender' argument.
This actor 'sender' reference is then available in the receiving actor in the 'sender()' member variable, if invoked from within an Actor. If not then no sender is available.
actor ! message
- Specified by:
$bang
in interfaceMinimalActorRef
- Specified by:
$bang
in interfaceScalaActorRef
-
$bang$default$2
public ActorRef $bang$default$2(java.lang.Object message)
- Specified by:
$bang$default$2
in interfaceMinimalActorRef
- Specified by:
$bang$default$2
in interfaceScalaActorRef
-
path
public ActorPath path()
Description copied from class:ActorRef
Returns the path for this actor (from this actor up to the root actor).
-
provider
public ActorRefProvider provider()
Description copied from class:InternalActorRef
Get a reference to the actor ref provider which created this ref.- Specified by:
provider
in classInternalActorRef
-
writeReplace
protected java.lang.Object writeReplace() throws java.io.ObjectStreamException
- Specified by:
writeReplace
in interfaceMinimalActorRef
- Throws:
java.io.ObjectStreamException
-
-