void SseProxy::beginSendingCandidateResults(const Count &count, int activityId) { cout << "SseProxy: beginSendingCandidateResults" << endl; DxMessageCode code = BEGIN_SENDING_CANDIDATE_RESULTS; int dataLength = sizeof(Count); Count marshall = count; marshall.marshall(); sendMessage(code, activityId, dataLength, &marshall); }
void SseProxy::beginSendingBadBands(const Count &count, int activityId) { cout << "SseProxy: beginSendingBadBands" << endl; DxMessageCode code = BEGIN_SENDING_BAD_BANDS; int dataLength = sizeof(Count); Count marshall = count; marshall.marshall(); sendMessage(code, activityId, dataLength, &marshall); }
void SseProxy::beginSendingCwCoherentSignals(const Count &count, int activityId) { cout << "SseProxy: beginSendingCwCoherentSignals" << endl; DxMessageCode code = BEGIN_SENDING_CW_COHERENT_SIGNALS; int dataLength = sizeof(Count); Count marshall = count; marshall.marshall(); sendMessage(code, activityId, dataLength, &marshall); }
void SseProxy::beginSendingArchiveComplexAmplitudes( const Count &nHalfFrames, int activityId) { cout << "SseProxy: beginSendingArchiveComplexAmplitudes" << endl; DxMessageCode code = BEGIN_SENDING_ARCHIVE_COMPLEX_AMPLITUDES; int dataLength = sizeof(Count); Count marshall = nHalfFrames; marshall.marshall(); sendMessage(code, activityId, dataLength, &marshall); }