Repository: qpid-jms Updated Branches: refs/heads/master e0b5980c0 -> 1207e7011
QPIDJMS-157 Add some docs to cover the sendTimeout and requestTimeout options. Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/1207e701 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/1207e701 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/1207e701 Branch: refs/heads/master Commit: 1207e7011aee2d609486afb82461f819809647ff Parents: e0b5980 Author: Timothy Bish <[email protected]> Authored: Tue Mar 22 18:20:26 2016 -0400 Committer: Timothy Bish <[email protected]> Committed: Tue Mar 22 18:20:26 2016 -0400 ---------------------------------------------------------------------- qpid-jms-docs/Configuration.md | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/1207e701/qpid-jms-docs/Configuration.md ---------------------------------------------------------------------- diff --git a/qpid-jms-docs/Configuration.md b/qpid-jms-docs/Configuration.md index 043303a..59b5d66 100644 --- a/qpid-jms-docs/Configuration.md +++ b/qpid-jms-docs/Configuration.md @@ -90,6 +90,8 @@ The options apply to the behaviour of the JMS objects such as Connection, Sessio + **jms.topicPrefix** Optional prefix value added to the name of any Topic created from a JMS Session. + **jms.closeTimeout** Timeout value that controls how long the client waits on Connection close before returning. (By default the client waits 15 seconds for a normal close completion event). + **jms.connectTimeout** Timeout value that controls how long the client waits on Connection establishment before returning with an error. (By default the client waits 15 seconds for a connection to be established before failing). ++ **jms.sendTimeout** Timeout value that controls how long the client waits on completion of a synchronous message send before returning an error (By default the client will wait indefinitely for a send to complete). ++ **jms.requestTimeout** Timeout value that controls how long the client waits on completion of various synchronous interactions with the remote peer before returning an error (By default the client will wait indefinitely for a request to complete + **jms.clientIDPrefix** Optional prefix value that is used for generated Client ID values when a new Connection is created for the JMS ConnectionFactory. The default prefix is 'ID:'. + **jms.connectionIDPrefix** Optional prefix value that is used for generated Connection ID values when a new Connection is created for the JMS ConnectionFactory. This connection ID is used when logging some information from the JMS Connection object so a configurable prefix can make breadcrumbing the logs easier. The default prefix is 'ID:'. + **jms.messageIDType** Controls the type of the Message ID assigned to messages sent from the client. By default a generated String value is used on outgoing messages, other available types are UUID and UUID_STRING. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
