Hello , We are using RFA 8.1 C++ api to consume Level1 and Level2 market data
we are interested in understanding whether the value of StatusCode
in the following scenarios is fixed or variable:
When a non-authorized user subscribes to a RIC, the current statuscode is
NotAuthorizedEnum
. Is the value ofStatusCode
guaranteed to be NotAuthorizedEnum in this scenario ?When a non-valid RIC is subscribed, the current statuscode is
NotFoundEnum
. Is the value ofStatusCode
guaranteed to be NotFoundEnum in this scenario ?
We want to confirm if the application will consistently receive the above StatusCodes
in the mentioned situations.