001package edu.wpi.first.wpilibj.networktables2.server; 002 003 004/** 005 * A class that manages connections to a server 006 * 007 * @author Mitchell 008 * 009 */ 010public interface ServerAdapterManager { 011 /** 012 * Called when a connection adapter has been closed 013 * @param connectionAdapter the adapter that was closed 014 */ 015 public void close(ServerConnectionAdapter connectionAdapter, boolean closeStream); 016}