class FFWD::Plugin::JSON::FrameConnection

Public Class Methods

plugin_type() click to toggle source
# File lib/ffwd/plugin/json.rb, line 71
def self.plugin_type
  "json_frame_in"
end

Public Instance Methods

receive_data(data) click to toggle source
# File lib/ffwd/plugin/json.rb, line 75
def receive_data data
  receive_json data
rescue => e
  log.error "Failed to receive JSON: #{data}: #{e}"
end