Class SnapshotOffer
  Offers a PersistentActor a previously saved snapshot during recovery.
This offer is received before any further replayed messages.
    Inheritance
    
    SnapshotOffer
   
  
  
  
  Assembly: Akka.Persistence.dll
  Syntax
  
    [Serializable]
public sealed class SnapshotOffer : IEquatable<SnapshotOffer>
   
  Constructors
  
    |
    Edit this page
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public SnapshotOffer(SnapshotMetadata metadata, object snapshot)
   
  Parameters
  
  Properties
  
    |
    Edit this page
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public SnapshotMetadata Metadata { get; }
   
  Property Value
  
  
    |
    Edit this page
  
  
    View Source
  
  
  Snapshot
  
  
  Declaration
  
    public object Snapshot { get; }
   
  Property Value
  
  Methods
  
    |
    Edit this page
  
  
    View Source
  
  
  Equals(SnapshotOffer)
  
  
  Declaration
  
    public bool Equals(SnapshotOffer other)
   
  Parameters
  
  Returns
  
  
    |
    Edit this page
  
  
    View Source
  
  
  Equals(object)
  
  
  Declaration
  
    public override bool Equals(object obj)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | object | obj |  | 
    
  
  Returns
  
  Overrides
  
  
    |
    Edit this page
  
  
    View Source
  
  
  GetHashCode()
  
  
  Declaration
  
    public override int GetHashCode()
   
  Returns
  
  Overrides
  
  
    |
    Edit this page
  
  
    View Source
  
  
  ToString()
  
  
  Declaration
  
    public override string ToString()
   
  Returns
  
  Overrides
  
  Implements
  
  Extension Methods