Sha256: 598c5503b3c60392c6a477f9de3b269b3fc6a607414bc557ca9ff2b8e8817734
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# TODO Support send(String) # TODO Support send(:data => string, :durable=>true, :address=>'MyAddress') # # See: http://hornetq.sourceforge.net/docs/hornetq-2.1.2.Final/api/index.html?org/hornetq/api/core/client/ClientProducer.html # # Other methods still directly accessible through this class: # # void send(Message message) # Sends a message to an address # void send(String address, Message message) # Sends a message to the specified address instead of the ClientProducer's address # # close() # Closes the ClientProducer # boolean closed? # Returns whether the producer is closed or not # # SimpleString address() # Returns the address where messages will be sent # # int max_rate() # Returns the maximum rate at which a ClientProducer can send messages per second # # boolean block_on_durable_send? # Returns whether the producer will block when sending durable messages # boolean block_on_non_durable_send? # Returns whether the producer will block when sending non-durable messages # class Java::org.hornetq.core.client.impl::ClientProducerImpl end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jruby-hornetq-0.3.2 | lib/hornetq/client/org_hornetq_core_client_impl_client_producer_impl.rb |