Class Snapshot
Wrapper for snapshot data.
Inherited Members
Namespace: Akka.Persistence.Serialization
Assembly: Akka.Persistence.dll
Syntax
public sealed class Snapshot
Constructors
| Edit this page View SourceSnapshot(object)
TBD
Declaration
public Snapshot(object data)
Parameters
| Type | Name | Description |
|---|---|---|
| object | data | TBD |
Properties
| Edit this page View SourceData
TBD
Declaration
public object Data { get; }
Property Value
| Type | Description |
|---|---|
| object |
Methods
| Edit this page View SourceEquals(object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with the current object. |
Returns
| Type | Description |
|---|---|
| bool | true if the specified object is equal to the current object; otherwise, false. |
Overrides
| Edit this page View SourceGetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | A hash code for the current object. |
Edit this page