Class PrimitiveSerializers
Inherited Members
Namespace: Akka.Remote.Serialization
Assembly: Akka.Remote.dll
Syntax
public sealed class PrimitiveSerializers : SerializerWithStringManifest
Constructors
| Improve this Doc View SourcePrimitiveSerializers(ExtendedActorSystem, Config)
Initializes a new instance of the Primitive
Declaration
public PrimitiveSerializers(ExtendedActorSystem system, Config config)
Parameters
Type | Name | Description |
---|---|---|
Extended |
system | The actor system to associate with this serializer. |
Config | config | Config object containing the serializer settings |
Methods
| Improve this Doc View SourceFromBinary(Byte[], String)
Deserializes a byte array into an object using an optional manifest
(type hint).
It's recommended to throw Serialization
Declaration
public override object FromBinary(byte[] bytes, string manifest)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | bytes | The array containing the serialized object |
String | manifest | The type hint used to deserialize the object contained in the array. |
Returns
Type | Description |
---|---|
Object | The object contained in the array |
Overrides
| Improve this Doc View SourceManifest(Object)
Returns the manifest (type hint) that will be provided in the From
note
This method returns Empty if a manifest is not needed.
Declaration
public override string Manifest(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj |
Returns
Type | Description |
---|---|
String | The manifest needed for the deserialization of the specified |
Overrides
| Improve this Doc View SourceToBinary(Object)
Serializes the given object into a byte array
Declaration
public override byte[] ToBinary(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | The object to serialize |
Returns
Type | Description |
---|---|
Byte[] | A byte array containing the serialized object |