C# Class Akka.Serialization.JavaSerializer

Class JavaSerializer.
Inheritance: Serializer
Datei anzeigen Open project: rogeralsing/akka.net

Public Methods

Method Description
FromBinary ( byte bytes, Type type ) : object

Deserializes a byte array into an object of type type

JavaSerializer ( ExtendedActorSystem system ) : System

Initializes a new instance of the JavaSerializer class.

ToBinary ( object obj ) : byte[]

Serializes the given object into a byte array

Method Details

FromBinary() public method

Deserializes a byte array into an object of type type
public FromBinary ( byte bytes, Type type ) : object
bytes byte The array containing the serialized object
type System.Type The type of object contained in the array
return object

JavaSerializer() public method

Initializes a new instance of the JavaSerializer class.
public JavaSerializer ( ExtendedActorSystem system ) : System
system ExtendedActorSystem The actor system to associate with this serializer.
return System

ToBinary() public method

Serializes the given object into a byte array
public ToBinary ( object obj ) : byte[]
obj object The object to serialize
return byte[]