private synchronized void sendStop(){
try{
noreception = true;
LOG.debug("Sending stop signal");
incomingQueue.put(new ToSend(null, new SubStopOp(new StopOp()), -1));
LOG.debug("Sent stop signal");
} catch(InterruptedException e) {
LOG.fatal("Interrupted while sending stop signal to bookie handle");
}
}