use of com.biglybt.core.util.AEMonitor in project BiglyBT by BiglySoftware.
the class VirtualChannelSelector method initSafeMode.
private void initSafeMode() {
if (Logger.isEnabled()) {
Logger.log(new LogEvent(LOGID, "***************** SAFE SOCKET SELECTOR MODE ENABLED *****************"));
}
selector_impl = null;
selectors = new HashMap<>();
selectors_mon = new AEMonitor("VirtualChannelSelector:FM");
selectors.put(new VirtualChannelSelectorImpl(this, op, pause, randomise_keys), new ArrayList<AbstractSelectableChannel>());
selectors_keyset_cow = new HashSet<>(selectors.keySet());
}
Aggregations