aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientState.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientState.java')
-rw-r--r--vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientState.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientState.java b/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientState.java
deleted file mode 100644
index 13a12f707d9..00000000000
--- a/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/ClientState.java
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.http.server;
-
-import com.yahoo.jdisc.Metric;
-import com.yahoo.jdisc.ReferencedResource;
-import com.yahoo.messagebus.shared.SharedSourceSession;
-import com.yahoo.vespa.http.client.core.OperationStatus;
-
-import java.util.concurrent.BlockingQueue;
-
-/**
- * The state of a client session, used to save replies when client disconnects.
- *
- * @author <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
- */
-public class ClientState {
-
- public final int pending;
- public final long creationTime;
- public final BlockingQueue<OperationStatus> feedReplies;
- public final ReferencedResource<SharedSourceSession> sourceSession;
- public final Metric.Context metricContext;
-
- public final long prevOpsPerSecTime; // previous measurement time of OPS
- public final double operationsForOpsPerSec;
-
- public ClientState(int pending, BlockingQueue<OperationStatus> feedReplies,
- ReferencedResource<SharedSourceSession> sourceSession, Metric.Context metricContext,
- long prevOpsPerSecTime, double operationsForOpsPerSec) {
- super();
- this.pending = pending;
- this.feedReplies = feedReplies;
- this.sourceSession = sourceSession;
- this.metricContext = metricContext;
- creationTime = System.currentTimeMillis();
- this.prevOpsPerSecTime = prevOpsPerSecTime;
- this.operationsForOpsPerSec = operationsForOpsPerSec;
- }
-
-}