Receive, process, send, and synchronize. * @return the number of inflight messages */
| 42 | * @return the number of inflight messages |
| 43 | */ |
| 44 | size_t NetworkSequenceCollection::pumpFlushReduce() |
| 45 | { |
| 46 | pumpNetwork(); |
| 47 | m_comm.flush(); |
| 48 | return m_comm.reduceInflight(); |
| 49 | } |
| 50 | |
| 51 | /** Receive packets and process them until no more work exists for any |
| 52 | * slave processor. |
nothing calls this directly
no test coverage detected