Akka.Persistence.Serialization.SnapshotSerializer.FromBinary C# (CSharp) Method

FromBinary() public method

Deserializes a Snapshot. Delegates deserialization of snapshot data to a matching Serializer
public FromBinary ( byte bytes, Type type ) : object
bytes byte
type System.Type
return object
        public override object FromBinary(byte[] bytes, Type type)
        {
            return new Snapshot(SnapshotFromBinary(bytes));
        }