module Cassandra::CustomData::InstanceMethods

Public Instance Methods

serialize() click to toggle source

Serialize this domain object into a byte array to send to C*. @return [String] byte-array representation of this domain object.

   # File lib/cassandra/custom_data.rb
48 def serialize
49   raise NotImplementedError, "#{self.class} must implement the :serialize instance method"
50 end