Skip to content

Commit

Permalink
Updated some docs and object visibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin committed Feb 26, 2008
1 parent 0f3d833 commit c869dfe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Expand Up @@ -10,6 +10,9 @@
import net.spy.memcached.ops.OperationState;
import net.spy.memcached.ops.OperationStatus;

/**
* Base class for protocol-specific operation implementations.
*/
public abstract class BaseOperationImpl extends SpyObject {

/**
Expand Down Expand Up @@ -130,4 +133,4 @@ public void handleRead(ByteBuffer data) {
assert false;
}

}
}
Expand Up @@ -6,7 +6,7 @@
import net.spy.memcached.ops.GetOperation;
import net.spy.memcached.ops.OperationStatus;

public class GetOperationImpl extends OperationImpl implements GetOperation {
class GetOperationImpl extends OperationImpl implements GetOperation {

static final int CMD=0;

Expand Down
Expand Up @@ -5,7 +5,7 @@
import net.spy.memcached.ops.OperationCallback;
import net.spy.memcached.ops.OperationStatus;

public class MutatorOperationImpl extends OperationImpl implements
class MutatorOperationImpl extends OperationImpl implements
MutatatorOperation {

private static final int CMD_INCR=5;
Expand Down
Expand Up @@ -6,7 +6,7 @@
/**
* Implementation of a noop operation.
*/
public class NoopOperationImpl extends OperationImpl implements NoopOperation {
class NoopOperationImpl extends OperationImpl implements NoopOperation {

static final int CMD=10;

Expand Down

0 comments on commit c869dfe

Please sign in to comment.