| Package | Description |
|---|---|
| flowGenerator | |
| socketMonitor |
| Modifier and Type | Field and Description |
|---|---|
private java.util.Hashtable<java.lang.Integer,SocketInfo> |
FlowGenerator.availableSockets
List of sockets, which are available to be matched to flows.
|
private java.util.LinkedHashSet<SocketInfo> |
FlowGenerator.socketsToClose
List of sockets which needs to be closed.
|
| Modifier and Type | Field and Description |
|---|---|
private java.util.Hashtable<java.lang.Integer,SocketInfo> |
SocketMonitor.activeSocketsList
List of sockets, which were opened and they are not closed yet.
|
private java.util.Queue<SocketInfo> |
SocketMonitorQueue.listOfClosedSockets
Queue of information about closed sockets.
|
private java.util.Queue<SocketInfo> |
SocketMonitorQueue.listOfOpenSockets
Queue of information about opened sockets.
|
private java.util.Hashtable<java.lang.Integer,SocketInfo> |
SocketMonitor.openSocketList
List of sockets which were opened, but they can be either open or closed.
|
| Modifier and Type | Method and Description |
|---|---|
SocketInfo |
SocketMonitorQueue.getNextClosedSocketInfo()
Gets from the queue an information about a closed socket.
|
SocketInfo |
SocketMonitorQueue.getNextOpenSocketInfo()
Gets from the queue an information about an opened socket.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.ArrayList<SocketInfo> |
SocketInfoGenerator.findSocketInfo()
Gets list of information about currently open sockets.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
SocketMonitorQueue.queueClosedSocketInfo(SocketInfo socketInfo)
Adds to the queue information about a closed socket.
|
protected boolean |
SocketMonitorQueue.queueOpenSocketInfo(SocketInfo socketInfo)
Adds to the queue information about an opened socket.
|