class Protobuf::Rpc::Zmq::Server

def beacon_port

def beacon_port
  unless @beacon_port
    unless port = options[:beacon_port]
      port = ::Protobuf::Rpc::ServiceDirectory.port
    end
    @beacon_port = port.to_i
  end
  @beacon_port
end