Package akka.persistence
Class FilteredPayload
- java.lang.Object
-
- akka.persistence.FilteredPayload
-
public class FilteredPayload extends java.lang.Object
In some use cases with projections and events by slice filtered events needs to be stored in the journal to keep the sequence numbers for a given persistence id gap free. This placeholder payload is used for those cases and serialized down to a 0-byte representation when stored in the database.This payload is not in general expected to show up for users but in some scenarios/queries it may.
In the typed queries
EventEnvelope
this should be flagged asfiltered
and turned into a non-present payload by the query plugin implementations.
-
-
Constructor Summary
Constructors Constructor Description FilteredPayload()
-
Method Summary
All Methods Static Methods Abstract Methods Concrete Methods Modifier and Type Method Description static boolean
canEqual(java.lang.Object x$1)
abstract static boolean
equals(java.lang.Object that)
static int
hashCode()
static int
productArity()
static java.lang.Object
productElement(int x$1)
static java.lang.String
productElementName(int n)
static scala.collection.Iterator<java.lang.String>
productElementNames()
static scala.collection.Iterator<java.lang.Object>
productIterator()
static java.lang.String
productPrefix()
static java.lang.String
toString()
-
-
-
Method Detail
-
productPrefix
public static java.lang.String productPrefix()
-
productArity
public static int productArity()
-
productElement
public static java.lang.Object productElement(int x$1)
-
productIterator
public static scala.collection.Iterator<java.lang.Object> productIterator()
-
canEqual
public static boolean canEqual(java.lang.Object x$1)
-
hashCode
public static int hashCode()
-
toString
public static java.lang.String toString()
-
equals
public abstract static boolean equals(java.lang.Object that)
-
productElementName
public static java.lang.String productElementName(int n)
-
productElementNames
public static scala.collection.Iterator<java.lang.String> productElementNames()
-
-