Class TcpControlConnection

java.lang.Object
kieker.analysis.architecture.adaptation.TcpControlConnection

public class TcpControlConnection
extends java.lang.Object
Stores all information concerning a TCP connection to control monitoring probes.
Since:
1.15
Author:
Marc Adolf
  • Constructor Summary

    Constructors 
    Constructor Description
    TcpControlConnection​(java.lang.String ip, int port, java.lang.String serviceComponent, SingleSocketTcpWriter tcpWriter)
    Only initiates complete data sets.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getIp()  
    int getPort()  
    java.lang.String getServiceComponent()  
    SingleSocketTcpWriter getTcpWriter()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TcpControlConnection

      public TcpControlConnection​(java.lang.String ip, int port, java.lang.String serviceComponent, SingleSocketTcpWriter tcpWriter)
      Only initiates complete data sets.
      Parameters:
      ip - The IP the tcpWriter is connected to.
      serviceComponent - The name of the component.
      port - The port the tcpWriter is connected to.
      tcpWriter - the TCP writer which has the connection established.
  • Method Details