diff options
author | Ariel Constenla-Haile <arielch@apache.org> | 2012-01-25 07:36:47 +0000 |
---|---|---|
committer | Ariel Constenla-Haile <arielch@apache.org> | 2012-01-25 07:36:47 +0000 |
commit | 868b9394e5980e3a65da0e409649c2cbd8846839 (patch) | |
tree | 294ea28b4df59895e08fbe80e584da7752424d41 | |
parent | 537fc10e0fb4aa174d32fd7417c487d603f1690a (diff) |
i118814 - Allow set timeout in Mail API
-rw-r--r-- | offapi/com/sun/star/mail/XMailService.idl | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/offapi/com/sun/star/mail/XMailService.idl b/offapi/com/sun/star/mail/XMailService.idl index 209926908766..84048cb0236a 100644 --- a/offapi/com/sun/star/mail/XMailService.idl +++ b/offapi/com/sun/star/mail/XMailService.idl @@ -143,9 +143,24 @@ interface XMailService: ::com::sun::star::uno::XInterface { @param xConnectionContext [in] an interface used to query for connection related information. The context must contain the following values: - "ServerName" of type 'string', "Port" of type 'long', "ConnectionType" - of type 'string'. A list of supported connection types can be queried - using <code>getSupportedConnectionTypes</code>. + <ul> + <li> + <b>ServerName</b> of type 'string'. + </li> + <li> + <b>Port</b> of type 'long'. + </li> + <li> + <b>ConnectionType</b> of type 'string'. + A list of supported connection types can be queried using + <member>getSupportedConnectionTypes</member>. + </li> + <li> + <b>Timeout</b> of type 'long' (Optional). + Specifies a timeout in seconds for blocking operations, + like the connection attempt. + </li> + </ul> @param xAuthenticator [in] an interface used to query for the necessary user information |