mirror of
https://github.com/apache/activemq.git
synced 2025-02-17 07:24:51 +00:00
This commit is contained in:
parent
d2ddd1dcad
commit
4183e6e47c
@ -32,6 +32,7 @@ public abstract class TransportServerSupport extends ServiceSupport implements T
|
|||||||
private URI bindLocation;
|
private URI bindLocation;
|
||||||
private TransportAcceptListener acceptListener;
|
private TransportAcceptListener acceptListener;
|
||||||
protected Map<String, Object> transportOptions;
|
protected Map<String, Object> transportOptions;
|
||||||
|
protected boolean allowLinkStealing;
|
||||||
|
|
||||||
public TransportServerSupport() {
|
public TransportServerSupport() {
|
||||||
}
|
}
|
||||||
@ -89,5 +90,13 @@ public abstract class TransportServerSupport extends ServiceSupport implements T
|
|||||||
this.transportOptions = transportOptions;
|
this.transportOptions = transportOptions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isAllowLinkStealing() {
|
||||||
|
return allowLinkStealing;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAllowLinkStealing(boolean allowLinkStealing) {
|
||||||
|
this.allowLinkStealing = allowLinkStealing;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user