MxBufferOutput

Description

Defines the data output by the stream.

Structure Definition

1
2
3
4
5
6
7
class MxBufferOutput:
    def __init__(self):
        self.errorCode = None
        self.errorMsg = None
        self.data = None
    def SetErrorInfo(self, errorCodeIn, errorMsgIn):
        pass

Parameters

Parameter

Type

Description

errorCode

int

Output error code

errorMsg

bytes

Output error information

data

bytes

Output data