Search in sources :

Example 6 with Echo

use of com.xrtb.commands.Echo in project XRTB by benmfaul.

the class Commands method sendEcho.

/**
  * Send an echo command
  * @param to. Whom to send the command to.
  */
public void sendEcho(String to) {
    Echo e = new Echo();
    e.from = uuid;
    if (!(to.length() == 0 || to.equals("*")))
        e.to = to;
    commands.add(e);
}
Also used : Echo(com.xrtb.commands.Echo)

Aggregations

Echo (com.xrtb.commands.Echo)6 CountDownLatch (java.util.concurrent.CountDownLatch)2 Test (org.junit.Test)2 LogLevel (com.xrtb.commands.LogLevel)1 IOException (java.io.IOException)1 HashMap (java.util.HashMap)1 List (java.util.List)1 Map (java.util.Map)1 ServletException (javax.servlet.ServletException)1