Interface IMemoryMessages
TBD
Namespace: Akka.Persistence.Journal
Assembly: Akka.Persistence.dll
Syntax
public interface IMemoryMessages
Methods
| Improve this Doc View SourceAdd(IPersistentRepresentation)
TBD
Declaration
IDictionary<string, LinkedList<IPersistentRepresentation>> Add(IPersistentRepresentation persistent)
Parameters
Type | Name | Description |
---|---|---|
IPersistentRepresentation | persistent | TBD |
Returns
Type | Description |
---|---|
IDictionary<String, LinkedList<IPersistentRepresentation>> | TBD |
Delete(String, Int64)
TBD
Declaration
IDictionary<string, LinkedList<IPersistentRepresentation>> Delete(string pid, long seqNr)
Parameters
Type | Name | Description |
---|---|---|
String | pid | TBD |
Int64 | seqNr | TBD |
Returns
Type | Description |
---|---|
IDictionary<String, LinkedList<IPersistentRepresentation>> | TBD |
HighestSequenceNr(String)
TBD
Declaration
long HighestSequenceNr(string pid)
Parameters
Type | Name | Description |
---|---|---|
String | pid | TBD |
Returns
Type | Description |
---|---|
Int64 | TBD |
Read(String, Int64, Int64, Int64)
TBD
Declaration
IEnumerable<IPersistentRepresentation> Read(string pid, long fromSeqNr, long toSeqNr, long max)
Parameters
Type | Name | Description |
---|---|---|
String | pid | TBD |
Int64 | fromSeqNr | TBD |
Int64 | toSeqNr | TBD |
Int64 | max | TBD |
Returns
Type | Description |
---|---|
IEnumerable<IPersistentRepresentation> | TBD |
Update(String, Int64, Func<IPersistentRepresentation, IPersistentRepresentation>)
TBD
Declaration
IDictionary<string, LinkedList<IPersistentRepresentation>> Update(string pid, long seqNr, Func<IPersistentRepresentation, IPersistentRepresentation> updater)
Parameters
Type | Name | Description |
---|---|---|
String | pid | TBD |
Int64 | seqNr | TBD |
Func<IPersistentRepresentation, IPersistentRepresentation> | updater | TBD |
Returns
Type | Description |
---|---|
IDictionary<String, LinkedList<IPersistentRepresentation>> | TBD |