Introduce a new client listener interface for the Java agent
[deliverable/lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondListLoggersCommand.java
index f5ad9c50443f6ec805ced0191e2456600693e148..c06eaaad95e09db12565d841a7b75c88ada37194 100644 (file)
@@ -23,8 +23,6 @@ import java.nio.ByteOrder;
 import java.util.ArrayList;
 import java.util.List;
 
-import org.lttng.ust.agent.AbstractLttngAgent;
-
 /**
  * Session daemon command asking the Java agent to list its registered loggers,
  * which corresponds to event names in the tracing session.
@@ -35,7 +33,7 @@ import org.lttng.ust.agent.AbstractLttngAgent;
 class SessiondListLoggersCommand implements ISessiondCommand {
 
        @Override
-       public LttngAgentResponse execute(AbstractLttngAgent<?> agent) {
+       public LttngAgentResponse execute(ILttngTcpClientListener agent) {
                final List<String> loggerList = new ArrayList<String>();
                int dataSize = 0;
 
This page took 0.026113 seconds and 5 git commands to generate.