Sha256: 92169edd2297c8a429334046aefc8a7bb18001a14075667c4ff38c02c916cebe

Contents?: true

Size: 543 Bytes

Versions: 3

Compression:

Stored size: 543 Bytes

Contents

module Pione
  module Front
    # BrokerFront is a front class for pione-broker command.
    class BrokerFront < BasicFront
      def initialize
        super(Global.broker_front_port_range)
      end

      def get_tuple_space(tuple_space_id)
        Global.command.agent.get_tuple_space(tuple_space_id)
      end

      def set_tuple_space_receiver(uri)
        Global.set_tuple_space_receiver_uri(uri)
      end

      def update_tuple_space_list(list)
        Global.command.agent.update_tuple_space_list(list)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pione-0.3.2 lib/pione/front/broker-front.rb
pione-0.3.1 lib/pione/front/broker-front.rb
pione-0.3.0 lib/pione/front/broker-front.rb