We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear author, why send Hermes::BoardAvailableData() by downstream or send MachineReadyData by upstream,it will close the connected?
The text was updated successfully, but these errors were encountered:
void boardAvailable_data(void* ptrstream, void* ptrsink) { assert(ptrstream != nullptr); assert(ptrsink != nullptr); auto streamptr = (Hermes::Downstream*)ptrstream; auto sinkptr = (Hermes::DownstreamSink*)ptrsink; auto avd = Hermes::BoardAvailableData(); std::ostringstream oss; oss << avd; std::cout << oss.str(); streamptr->Signal(sinkptr->m_sessionId, avd); }
void bachine_ready_data(void* ptrstream, void* ptrsink) { assert(ptrstream != nullptr); assert(ptrsink != nullptr); auto streamptr = (Hermes::Upstream*)ptrstream; auto sinkptr = (Hermes::UpstreamSink*)ptrsink; streamptr->Signal(sinkptr->m_sessionId, Hermes::MachineReadyData()); }
Sorry, something went wrong.
No branches or pull requests
Dear author,
why send Hermes::BoardAvailableData() by downstream or send MachineReadyData by upstream,it will close the connected?
The text was updated successfully, but these errors were encountered: