class Themis::Callbacks

Public Instance Methods

get_pub_key_by_id(id) click to toggle source
# File lib/rubythemis.rb, line 96
def get_pub_key_by_id(id)
    raise ThemisError, "Callbacks not implemented: get_pub_key_by_id"
end
receive() click to toggle source
# File lib/rubythemis.rb, line 104
def receive()
    raise ThemisError, "Callbacks not implemented: receive"
end
send(message) click to toggle source
# File lib/rubythemis.rb, line 100
def send(message)
    raise ThemisError, "Callbacks not implemented: send"
end