AWS IoT Device SDK C++ v2
1.34.0
AWS IoT Device SDK C++ v2
|
#include <EventStreamClient.h>
Public Member Functions | |
virtual | ~StreamResponseHandler () noexcept=default |
virtual void | OnStreamClosed () |
Protected Member Functions | |
virtual void | OnStreamEvent (Crt::ScopedResource< AbstractShapeBase > response) |
virtual bool | OnStreamError (Crt::ScopedResource< OperationError > operationError, RpcError rpcError) |
Friends | |
class | ClientOperation |
Base class for all operation stream handlers. For operations with a streaming response (0+ messages that may arrive after the initial response).
|
virtualdefaultnoexcept |
|
virtual |
Invoked when stream is closed, so no more messages will be received.
|
protectedvirtual |
Invoked when a message is received on this continuation but results in an error.
This callback can return true so that the stream is closed afterwards.
|
protectedvirtual |
Invoked when a message is received on this continuation.
|
friend |