tchannel-benchmark/src/main/java/com/uber/tchannel/benchmarks/PingPongMultiServerBenchmark.java [144:174]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static class Ping {
        private final String request;

        public Ping(String request) {
            this.request = request;
        }
    }

    public static class Pong {
        private final String response;

        public Pong(String response) {
            this.response = response;
        }
    }

    public static class PingDefaultRequestHandler extends JSONRequestHandler<Ping, Pong> {

        @Override
        public JsonResponse<Pong> handleImpl(JsonRequest<Ping> request) {
            return new JsonResponse.Builder<Pong>(request)
                .setBody(new Pong("pong!"))
                .build();
        }
    }

    @AuxCounters
    @State(Scope.Thread)
    public static class AdditionalCounters {
        private final AtomicInteger actualQPS = new AtomicInteger(0);
        private final AtomicInteger errorQPS = new AtomicInteger(0);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tchannel-benchmark/src/main/java/com/uber/tchannel/benchmarks/PingPongServerBenchmark.java [142:172]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static class Ping {
        private final String request;

        public Ping(String request) {
            this.request = request;
        }
    }

    public static class Pong {
        private final String response;

        public Pong(String response) {
            this.response = response;
        }
    }

    public static class PingDefaultRequestHandler extends JSONRequestHandler<Ping, Pong> {

        @Override
        public JsonResponse<Pong> handleImpl(JsonRequest<Ping> request) {
            return new JsonResponse.Builder<Pong>(request)
                .setBody(new Pong("pong!"))
                .build();
        }
    }

    @AuxCounters
    @State(Scope.Thread)
    public static class AdditionalCounters {
        private final AtomicInteger actualQPS = new AtomicInteger(0);
        private final AtomicInteger errorQPS = new AtomicInteger(0);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



