ecorm / cppwamp

C++ client library for the WAMP protocol.
Boost Software License 1.0
35 stars 9 forks source link

Implement call timeouts on client #22

Closed ecorm closed 9 years ago

ecorm commented 9 years ago

Implement call timeouts, as per the advanced spec.

ecorm commented 9 years ago

Client requirements:

It's not obvious what the message flow should be for timeouts, but a reasonable guess would be that the same as call cancellation, with the exception that the caller does not send a CANCEL message. I raised this ambiguity in https://github.com/tavendo/WAMP/issues/155.

The feature would require significant changes to the Client and Session classes. This feature should be implemented along with #21.

ecorm commented 9 years ago

The message flow is as expected. The requirement are such easier to meet for the caller, so this issue has been split up into #35 and #36.