use of org.voltdb.messaging.RejoinMessage in project voltdb by VoltDB.
the class ElasticJoinProducer method sendFirstFragResponse.
/**
* Notify the coordinator that this site has received the first fragment message
*/
private void sendFirstFragResponse() {
if (JOINLOG.isDebugEnabled()) {
JOINLOG.debug("P" + m_partitionId + " sending first fragment response to coordinator " + CoreUtils.hsIdToString(m_coordinatorHsId));
}
RejoinMessage msg = new RejoinMessage(m_mailbox.getHSId(), RejoinMessage.Type.FIRST_FRAGMENT_RECEIVED);
m_mailbox.send(m_coordinatorHsId, msg);
m_firstFragResponseSent = true;
}
Aggregations