class Protobuf::Rpc::Connectors::Zmq

def self.zmq_context

def self.zmq_context
  @zmq_contexts ||= Hash.new do |hash, key|
    hash[key] = ZMQ::Context.new
  end
  @zmq_contexts[Process.pid]
end