Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -224,22 +224,30 @@ public boolean stop(final long timeout, final TimeUnit timeUnit) {
return stopped;
}

// not public, handy for testing
int getSendRcFalse() {
/**
* Used in tests
*/
synchronized int getSendRcFalse() {
return sendRcFalse;
}

// not public, handy for testing
int getSendRcTrue() {
/**
* Used in tests
*/
synchronized int getSendRcTrue() {
return sendRcTrue;
}

// not public, handy for testing
void resetSendRcs() {
/**
* Used in tests
*/
synchronized void resetSendRcs() {
sendRcTrue = sendRcFalse = 0;
}

// not public, handy for testing
/**
* Used in tests
*/
JeroMqManager getManager() {
return manager;
}
Expand Down
Loading