Skip to content

/AWS1/CL_BDCRESPONSECHUNK

A structure representing a response chunk that contains exactly one of the possible event types: contentStart, contentDelta, or contentStop.

CONSTRUCTOR

IMPORTING

Optional arguments:

io_contentstart TYPE REF TO /AWS1/CL_BDCCONTENTSTARTEVENT /AWS1/CL_BDCCONTENTSTARTEVENT

An event indicating the start of content streaming from the command execution. This is the first chunk received.

io_contentdelta TYPE REF TO /AWS1/CL_BDCCONTENTDELTAEVENT /AWS1/CL_BDCCONTENTDELTAEVENT

An event containing incremental output (stdout or stderr) from the command execution. These are the middle chunks.

io_contentstop TYPE REF TO /AWS1/CL_BDCCONTENTSTOPEVENT /AWS1/CL_BDCCONTENTSTOPEVENT

An event indicating the completion of the command execution, including the exit code and final status. This is the last chunk received.


Queryable Attributes

contentStart

An event indicating the start of content streaming from the command execution. This is the first chunk received.

Accessible with the following methods

Method Description
GET_CONTENTSTART() Getter for CONTENTSTART

contentDelta

An event containing incremental output (stdout or stderr) from the command execution. These are the middle chunks.

Accessible with the following methods

Method Description
GET_CONTENTDELTA() Getter for CONTENTDELTA

contentStop

An event indicating the completion of the command execution, including the exit code and final status. This is the last chunk received.

Accessible with the following methods

Method Description
GET_CONTENTSTOP() Getter for CONTENTSTOP