MCPcopy Create free account
hub / github.com/apache/thrift / checkCallEvents

Function checkCallEvents

lib/cpp/test/processor/ProcessorTest.cpp:412–420  ·  view source on GitHub ↗

* Check for the events that should be logged when a call is made. * * This just calls checkCallHandlerEvents() followed by * checkCallPostHandlerEvents(). * * Returns the call ID allocated by the server. */

Source from the content-addressed store, hash-verified

410 * Returns the call ID allocated by the server.
411 */
412uint32_t checkCallEvents(const std::shared_ptr<EventLog>& log,
413 uint32_t connId,
414 EventType callType,
415 const string& callName) {
416 uint32_t callId = checkCallHandlerEvents(log, connId, callType, callName);
417 checkCallPostHandlerEvents(log, connId, callId, callName);
418
419 return callId;
420}
421
422/*
423 * Test functions

Callers 1

testSeparateConnectionsFunction · 0.85

Calls 2

checkCallHandlerEventsFunction · 0.85

Tested by

no test coverage detected