Package akka.persistence.typed
Interface EventSeq<A>
-
- All Known Implementing Classes:
EmptyEventSeq$
public interface EventSeq<A>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description scala.collection.immutable.Seq<A>
events()
boolean
isEmpty()
boolean
nonEmpty()
int
size()
-
-
-
Method Detail
-
events
scala.collection.immutable.Seq<A> events()
-
isEmpty
boolean isEmpty()
-
nonEmpty
boolean nonEmpty()
-
size
int size()
-
-