Esempio n. 1
0
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);
}
Esempio n. 2
0
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);
}
Esempio n. 3
0
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);
}
Esempio n. 4
0
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);
}