diff options
Diffstat (limited to 'js/src/Ice/ObjectPrx.d.ts')
-rw-r--r-- | js/src/Ice/ObjectPrx.d.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/js/src/Ice/ObjectPrx.d.ts b/js/src/Ice/ObjectPrx.d.ts index a377f92c4fb..6ea90a7022b 100644 --- a/js/src/Ice/ObjectPrx.d.ts +++ b/js/src/Ice/ObjectPrx.d.ts @@ -352,6 +352,13 @@ declare module "ice" ice_fixed(conn:Connection):this; /** + * Returns whether this proxy is a fixed proxy. + * + * @return True if this is a fixed proxy, false otherwise. + **/ + ice_isFixed():boolean; + + /** * Obtains the Connection for this proxy. If the proxy does not yet have an established connection, * it first attempts to create a connection. * @return The asynchronous result object for the invocation. @@ -380,7 +387,7 @@ declare module "ice" ice_isConnectionCached():boolean; /** - * Flushes any pending batched requests for this communicator. The call blocks until the flush is complete. + * Flushes any pending batched requests for this communicator. * @return The asynchronous result object for the invocation. */ ice_flushBatchRequests():AsyncResult<void>; |