Class: Wamp::Client::Serializer::Base
- Inherits:
-
Object
- Object
- Wamp::Client::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.
8 9 10 |
# File 'lib/wamp/client/serializer.rb', line 8 def type @type end |
Instance Method Details
#deserialize(string) ⇒ Object
Deserializes the object
18 19 |
# File 'lib/wamp/client/serializer.rb', line 18 def deserialize(string) end |
#serialize(object) ⇒ Object
Serializes the object
12 13 |
# File 'lib/wamp/client/serializer.rb', line 12 def serialize(object) end |