String client_addr = new String(backend.recv(0));
// If client reply, send rest back to frontend
if (!client_addr.equals("READY")) {
empty = new String(backend.recv(0));
assert empty.length()==0 | true;
String reply = new String(backend.recv(0));
frontend.send(client_addr.getBytes(), ZMQ.SNDMORE);
frontend.send("".getBytes(), ZMQ.SNDMORE);