in src/Runtime.js [18:27]
constructor(client, handler, handlerMetadata, errorCallbacks) {
this.client = client;
this.handler = handler;
this.handlerMetadata = handlerMetadata;
this.errorCallbacks = errorCallbacks;
this.handleOnce =
handlerMetadata.streaming === STREAM_RESPONSE
? this.handleOnceStreaming
: this.handleOnceNonStreaming;
}