use of org.apache.activemq.command.Command in project activemq-artemis by apache.
the class UdpTestSupport method assertCommandReceived.
protected Command assertCommandReceived() throws InterruptedException {
Command answer = null;
synchronized (lock) {
answer = receivedCommand;
while (answer == null) {
lock.wait(waitForCommandTimeout);
answer = receivedCommand;
}
}
assertNotNull("Should have received a Command by now!", answer);
return answer;
}
Aggregations