fractions/monitor/src/main/java/org/wildfly/swarm/monitor/runtime/InVMConnection.java [57:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
final class InVMConnection extends ServerConnection {

    private static Logger LOG = Logger.getLogger(InVMConnection.class);

    private final ByteBufferPool bufferPool;

    private final XnioWorker worker;

    private SSLSessionInfo sslSessionInfo;

    private XnioBufferPoolAdaptor poolAdaptor;

    private BufferingSinkConduit bufferSink;

    protected final List<CloseListener> closeListeners = new LinkedList<>();

    InVMConnection(XnioWorker worker, int port) {
        this.bufferPool = new DefaultByteBufferPool(false, 1024, 0, 0);
        this.worker = worker;
        this.address = new InetSocketAddress(port); // port carried forward from the initial
    }

    public void flushTo(StringBuffer sb) {
        bufferSink.flushTo(sb);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fractions/microprofile/microprofile-health/src/main/java/org/wildfly/swarm/microprofile/health/runtime/InVMConnection.java [57:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
final class InVMConnection extends ServerConnection {

    private static Logger LOG = Logger.getLogger(InVMConnection.class);

    private final ByteBufferPool bufferPool;

    private final XnioWorker worker;

    private SSLSessionInfo sslSessionInfo;

    private XnioBufferPoolAdaptor poolAdaptor;

    private BufferingSinkConduit bufferSink;

    protected final List<CloseListener> closeListeners = new LinkedList<>();

    InVMConnection(XnioWorker worker, int port) {
        this.bufferPool = new DefaultByteBufferPool(false, 1024, 0, 0);
        this.worker = worker;
        this.address = new InetSocketAddress(port); // port carried forward from the initial
    }

    public void flushTo(StringBuffer sb) {
        bufferSink.flushTo(sb);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



