Package | Description |
---|---|
org.hornetq.api.core.client |
Core Client Messaging API.
|
org.hornetq.api.core.management |
Management API for HornetQ servers and its Core resources.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ClientMessage
A ClientMessage represents a message sent and/or received by HornetQ.
|
Modifier and Type | Method and Description |
---|---|
void |
ClientProducer.send(Message message)
Sends a message to an address.
|
void |
ClientProducer.send(SimpleString address,
Message message)
Sends a message to the specified address instead of the ClientProducer's address.
|
void |
ClientProducer.send(java.lang.String address,
Message message)
Sends a message to the specified address instead of the ClientProducer's address.
|
void |
SendAcknowledgementHandler.sendAcknowledged(Message message)
Notifies the client that a message sent asynchronously has been received by the server.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.Object |
ManagementHelper.getResult(Message message)
Returns the result of an operation invocation or an attribute value.
|
static java.lang.Object[] |
ManagementHelper.getResults(Message message)
Returns the result of an operation invocation or an attribute value.
|
static boolean |
ManagementHelper.hasOperationSucceeded(Message message)
Returns whether the invocation of the management operation on the server resource succeeded.
|
static boolean |
ManagementHelper.isAttributesResult(Message message)
Returns whether the JMS message corresponds to the result of a management attribute value.
|
static boolean |
ManagementHelper.isOperationResult(Message message)
Returns whether the JMS message corresponds to the result of a management operation invocation.
|
static void |
ManagementHelper.putAttribute(Message message,
java.lang.String resourceName,
java.lang.String attribute)
Stores a resource attribute in a message to retrieve the value from the server resource.
|
static void |
ManagementHelper.putOperationInvocation(Message message,
java.lang.String resourceName,
java.lang.String operationName)
Stores a operation invocation in a message to invoke the corresponding operation the value from the server resource.
|
static void |
ManagementHelper.putOperationInvocation(Message message,
java.lang.String resourceName,
java.lang.String operationName,
java.lang.Object... parameters)
Stores a operation invocation in a message to invoke the corresponding operation the value from the server resource.
|
static java.lang.Object[] |
ManagementHelper.retrieveOperationParameters(Message message)
Used by HornetQ management service.
|
static void |
ManagementHelper.storeResult(Message message,
java.lang.Object result)
Used by HornetQ management service.
|
Copyright © 2009 Red Hat Inc. All Rights Reserved.