Class: WampClient::Serializer::Base
- Inherits:
-
Object
- Object
- WampClient::Serializer::Base
- Defined in:
- lib/wamp_client/serializer.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#deserialize(string) ⇒ Object
Deserializes the object.
-
#serialize(object) ⇒ Object
Serializes the object.
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
34 35 36 |
# File 'lib/wamp_client/serializer.rb', line 34 def type @type end |
Instance Method Details
#deserialize(string) ⇒ Object
Deserializes the object
45 46 47 |
# File 'lib/wamp_client/serializer.rb', line 45 def deserialize(string) end |
#serialize(object) ⇒ Object
Serializes the object
38 39 40 |
# File 'lib/wamp_client/serializer.rb', line 38 def serialize(object) end |