This closes #1135
This commit is contained in:
commit
78d0193fca
|
@ -143,10 +143,6 @@ public class AMQPConnectionContext extends ProtonInitializable {
|
||||||
handler.flush();
|
handler.flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void flush(boolean wait) {
|
|
||||||
handler.flush(wait);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void close(ErrorCondition errorCondition) {
|
public void close(ErrorCondition errorCondition) {
|
||||||
handler.close(errorCondition);
|
handler.close(errorCondition);
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,12 +56,7 @@ public class ProtonHandler extends ProtonInitializable {
|
||||||
|
|
||||||
private final Executor dispatchExecutor;
|
private final Executor dispatchExecutor;
|
||||||
|
|
||||||
private final Runnable dispatchRunnable = new Runnable() {
|
private final Runnable dispatchRunnable = () -> dispatch();
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
dispatch();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
private ArrayList<EventHandler> handlers = new ArrayList<>();
|
private ArrayList<EventHandler> handlers = new ArrayList<>();
|
||||||
|
|
||||||
|
@ -251,22 +246,12 @@ public class ProtonHandler extends ProtonInitializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void flush() {
|
public void flush() {
|
||||||
flush(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void flush(boolean wait) {
|
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
transport.process();
|
transport.process();
|
||||||
|
|
||||||
checkServerSASL();
|
checkServerSASL();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wait) {
|
dispatchExecutor.execute(dispatchRunnable);
|
||||||
dispatch();
|
|
||||||
} else {
|
|
||||||
dispatchExecutor.execute(dispatchRunnable);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void close(ErrorCondition errorCondition) {
|
public void close(ErrorCondition errorCondition) {
|
||||||
|
@ -276,7 +261,8 @@ public class ProtonHandler extends ProtonInitializable {
|
||||||
}
|
}
|
||||||
connection.close();
|
connection.close();
|
||||||
}
|
}
|
||||||
flush(true);
|
|
||||||
|
flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void checkServerSASL() {
|
protected void checkServerSASL() {
|
||||||
|
|
Loading…
Reference in New Issue