Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Java API for function execution does not allow to set a timeout to wait for the execution of a function. The Nevertheless, there is a possibility to set a specific timeout by using a system property when starting the client process.

Setting this timeout in the Java API has the effect of setting a read timeout in the socket. If the timeout expires during the execution of a function before data has been received, the connection is closed and if the number of retries is reached, the execute method throws an exception.

Setting the timeout in the native APIs (C++ and C#) has the effect of also setting a read timeout in the socket.

Nevertheless, how this timeout is set is not uniform across the different clients:

...