|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
Delivery modes supported by JMS.
| Field Summary | |
static int |
NON_PERSISTENT
This is the lowest overhead delivery mode because it does not require that the message be logged to stable storage. |
static int |
PERSISTENT
This mode instructs the JMS provider to log the message to stable storage as part of the client's send operation. |
| Field Detail |
public static final int NON_PERSISTENT
A JMS provider must deliver a NON_PERSISTENT message with an at-most-once guarantee. This means it may lose the message but it must not deliver it twice.
public static final int PERSISTENT
A JMS provider must deliver a PERSISTENT message with a once-and-only-once guarantee. It must not lose it and it must not deliver it twice.
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||