Package akka.persistence.journal
Class ReplayFilter
- java.lang.Object
-
- akka.persistence.journal.ReplayFilter
-
- All Implemented Interfaces:
Actor
,ActorLogging
public class ReplayFilter extends java.lang.Object implements Actor, ActorLogging
INTERNAL API
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReplayFilter.Disabled$
static class
ReplayFilter.Fail$
static interface
ReplayFilter.Mode
static class
ReplayFilter.RepairByDiscardOld$
static class
ReplayFilter.Warn$
-
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$, Actor.ignoringBehavior$
-
-
Constructor Summary
Constructors Constructor Description ReplayFilter(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters)
ReplayFilter(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters, boolean debugEnabled)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
akka$actor$Actor$_setter_$context_$eq(ActorContext x$1)
protected void
akka$actor$Actor$_setter_$self_$eq(ActorRef x$1)
The 'self' field holds the ActorRef for this actor.java.util.LinkedList<JournalProtocol.ReplayedMessage>
buffer()
ActorContext
context()
Scala API: Stores the context for this actor, including self, and sender.void
fail(java.lang.IllegalStateException cause)
void
logIssue(java.lang.String errMsg)
scala.collection.mutable.LinkedHashSet<java.lang.String>
oldWriters()
static Props
props(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters)
static Props
props(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters, boolean debugEnabled)
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit>
receive()
Scala API: This defines the initial actor behavior, it must return a partial function with the actor logic.ActorRef
self()
The 'self' field holds the ActorRef for this actor.void
sendBuffered()
long
seqNo()
void
seqNo_$eq(long x$1)
java.lang.String
writerUuid()
void
writerUuid_$eq(java.lang.String x$1)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.actor.Actor
aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, postRestart, postStop, preRestart, preStart, sender, supervisorStrategy, unhandled
-
Methods inherited from interface akka.actor.ActorLogging
_log_$eq, log
-
-
-
-
Constructor Detail
-
ReplayFilter
public ReplayFilter(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters, boolean debugEnabled)
-
ReplayFilter
public ReplayFilter(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters)
-
-
Method Detail
-
props
public static Props props(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters, boolean debugEnabled)
-
props
public static Props props(ActorRef persistentActor, ReplayFilter.Mode mode, int windowSize, int maxOldWriters)
-
context
public ActorContext context()
Description copied from interface:Actor
Scala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such asforward
.WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!
ActorContext
is the Scala API.getContext
returns aAbstractActor.ActorContext
, which is the Java API of the actor context.
-
self
public final ActorRef self()
Description copied from interface:Actor
The 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
-
akka$actor$Actor$_setter_$context_$eq
protected void akka$actor$Actor$_setter_$context_$eq(ActorContext x$1)
- Specified by:
akka$actor$Actor$_setter_$context_$eq
in interfaceActor
-
akka$actor$Actor$_setter_$self_$eq
protected final void akka$actor$Actor$_setter_$self_$eq(ActorRef x$1)
Description copied from interface:Actor
The 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
- Specified by:
akka$actor$Actor$_setter_$self_$eq
in interfaceActor
- Parameters:
x$1
- (undocumented)
-
buffer
public java.util.LinkedList<JournalProtocol.ReplayedMessage> buffer()
-
oldWriters
public scala.collection.mutable.LinkedHashSet<java.lang.String> oldWriters()
-
writerUuid
public java.lang.String writerUuid()
-
writerUuid_$eq
public void writerUuid_$eq(java.lang.String x$1)
-
seqNo
public long seqNo()
-
seqNo_$eq
public void seqNo_$eq(long x$1)
-
receive
public scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
Description copied from interface:Actor
Scala API: This defines the initial actor behavior, it must return a partial function with the actor logic.
-
sendBuffered
public void sendBuffered()
-
logIssue
public void logIssue(java.lang.String errMsg)
-
fail
public void fail(java.lang.IllegalStateException cause)
-
-