Class SnapshotOffer
Offers a PersistentActor a previously saved snapshot during recovery. This offer is received before any further replayed messages.
Implements
Inherited Members
Namespace: Akka.Persistence
Assembly: Akka.Persistence.dll
Syntax
[Serializable]
public sealed class SnapshotOffer : IEquatable<SnapshotOffer>
Constructors
| Edit this page View SourceSnapshotOffer(SnapshotMetadata, object)
Initializes a new instance of the SnapshotOffer class.
Declaration
public SnapshotOffer(SnapshotMetadata metadata, object snapshot)
Parameters
| Type | Name | Description |
|---|---|---|
| SnapshotMetadata | metadata | Snapshot metadata. |
| object | snapshot | Snapshot. |
Properties
| Edit this page View SourceMetadata
Snapshot metadata.
Declaration
public SnapshotMetadata Metadata { get; }
Property Value
| Type | Description |
|---|---|
| SnapshotMetadata |
Snapshot
Snapshot.
Declaration
public object Snapshot { get; }
Property Value
| Type | Description |
|---|---|
| object |
Methods
| Edit this page View SourceEquals(SnapshotOffer)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(SnapshotOffer other)
Parameters
| Type | Name | Description |
|---|---|---|
| SnapshotOffer | other | An object to compare with this object. |
Returns
| Type | Description |
|---|---|
| bool | true if the current object is equal to the |
Equals(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. |
Overrides
| Edit this page View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | A string that represents the current object. |
Edit this page