Akka.Persistence.Serialization.SnapshotSerializer.FromBinary C# (CSharp) 메소드

FromBinary() 공개 메소드

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