SquadronMarshaler<T, S> class abstract

Base class to serialize/deserialize data of type T to a transferable type S.

Implementers

Constructors

SquadronMarshaler()
const

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

marshal(T data) → S
Serialize data of type T to type S, eg. a String or some binary representation. unmarshal(marshal(data)) must produce an instance of T that is equivalent to original instance data.
marshall(T data) → S
Provided temporarily for compatibility reasons. See marshal.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
unmarshal(S data) → T
Deserialize a representation of type S back to the original data of type T. unmarshal(marshal(data)) must produce an instance of T that is equivalent to original instance data.
unmarshall(S data) → T
Provided temporarily for compatibility reasons. See unmarshal.

Operators

operator ==(Object other) bool
The equality operator.
inherited