Sha256: 8caf4ea5eacab6fb5a86b6104f0155e4a1b9a34cfa4afa81f52deeb8a56e8fff
Contents?: true
Size: 704 Bytes
Versions: 17
Compression:
Stored size: 704 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 autoload :Base, "mcollective/connector/base" end end
Version data entries
17 entries across 17 versions & 1 rubygems