From 693421b38b25cf570415fbb205a78948c32afeb9 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 26 Mar 2013 16:57:29 +0000
Subject: [PATCH] OPENDJ-832 Leverage the work queue for processing requests received on the HTTP connection handler
---
opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
index 8334b2c..875d03c 100644
--- a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -41,13 +41,13 @@
import org.opends.server.core.*;
import org.opends.server.core.networkgroups.NetworkGroup;
import org.opends.server.loggers.debug.DebugTracer;
-import org.opends.server.protocols.ldap.*;
-import org.opends.server.protocols.internal.InternalSearchOperation ;
import org.opends.server.protocols.internal.InternalSearchListener;
+import org.opends.server.protocols.internal.InternalSearchOperation;
+import org.opends.server.protocols.ldap.LDAPFilter;
import org.opends.server.types.*;
-import static org.opends.server.loggers.debug.DebugLogger.*;
import static org.opends.messages.ProtocolMessages.*;
+import static org.opends.server.loggers.debug.DebugLogger.*;
/**
@@ -63,16 +63,16 @@
*/
private static final DebugTracer TRACER = getTracer();
- // The message ID counter to use for jmx connections.
+ /** The message ID counter to use for jmx connections. */
private AtomicInteger nextMessageID;
- // The operation ID counter to use for operations on this connection.
+ /** The operation ID counter to use for operations on this connection. */
private AtomicLong nextOperationID;
- // The empty operation list for this connection.
+ /** The empty operation list for this connection. */
private LinkedList<Operation> operationList;
- // The connection ID for this client connection.
+ /** The connection ID for this client connection. */
private long connectionID;
/**
@@ -1028,7 +1028,7 @@
* <CODE>null</CODE> if no such operation could be found.
*/
@Override
- public AbstractOperation getOperationInProgress(int messageID)
+ public Operation getOperationInProgress(int messageID)
{
// Jmx operations will not be tracked.
return null;
--
Gitblit v1.10.0