Property | Type | Description | |
---|---|---|---|
system | ExtendedActorSystem |
Method | Description | |
---|---|---|
FromBinary ( byte bytes, |
Deserializes a byte array into an object of type type.
|
|
Serializer ( ExtendedActorSystem system ) : System |
Initializes a new instance of the Serializer class.
|
|
ToBinary ( object obj ) : byte[] |
Serializes the given object into a byte array
|
|
ToBinaryWithAddress ( Akka.Actor.Address address, object obj ) : byte[] |
Serializes the given object into a byte array and uses the given address to decorate serialized ActorRef's
|
Method | Description | |
---|---|---|
TypeQualifiedNameForManifest ( |
Utility to be used by implementors to create a manifest from the type. The manifest is used to look up the type on deserialization. Returns the type qualified name including namespace and assembly, but not assembly version. See Type.GetType(string) for details on how a type is looked up from a name. In particular, if the (partial) assembly name is not included only the assembly calling Type.GetType(string) is searched. If the (partial) assembly name is included, it searches in the specified assembly. |
public abstract FromBinary ( byte bytes, |
||
bytes | byte | The array containing the serialized object |
type | The type of object contained in the array | |
return | object |
public Serializer ( ExtendedActorSystem system ) : System | ||
system | ExtendedActorSystem | The actor system to associate with this serializer. |
return | System |
public abstract ToBinary ( object obj ) : byte[] | ||
obj | object | The object to serialize |
return | byte[] |
public ToBinaryWithAddress ( Akka.Actor.Address address, object obj ) : byte[] | ||
address | Akka.Actor.Address | The address to use when serializing local ActorRef´s |
obj | object | The object to serialize |
return | byte[] |
protected static TypeQualifiedNameForManifest ( |
||
type | ||
return | string |