Sha256: 615938c999fe09694117dbef52fd7813234983b4cefba26af6cbbd07ae08cd42
Contents?: true
Size: 696 Bytes
Versions: 61
Compression:
Stored size: 696 Bytes
Contents
module MCollective # Connectors take care of transporting messages between clients and agents, # the design doesn't your middleware to be very rich in features. All it # really needs is the ability to send and receive messages to named queues/topics. # # At present there are assumptions about the naming of topics and queues that is # compatible with Stomp, ie. # # /topic/foo.bar/baz # /queue/foo.bar/baz # # This is the only naming format that is supported, but you could replace Stomp # with something else that supports the above, see MCollective::Connector::Stomp # for the default connector. module Connector require "mcollective/connector/base" end end
Version data entries
61 entries across 61 versions & 2 rubygems