Skip to content

Commit

Permalink
# ignite-nio - Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Kulichenko committed Feb 15, 2015
1 parent 512ffc5 commit 37e76c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -32,7 +32,7 @@ public class DirectMessageWriter implements MessageWriter {
private final DirectByteBufferStream stream = new DirectByteBufferStream(null);

/** State. */
private final MessageWriterState state = new MessageWriterState();
private final DirectMessageWriterState state = new DirectMessageWriterState();

/** {@inheritDoc} */
@Override public void setBuffer(ByteBuffer buf) {
Expand Down
Expand Up @@ -22,7 +22,7 @@
/**
* Writer state.
*/
public class MessageWriterState {
public class DirectMessageWriterState {
/** Initial array size. */
private static final int INIT_SIZE = 10;

Expand All @@ -35,7 +35,7 @@ public class MessageWriterState {
/** Current position. */
private int pos;

public MessageWriterState() {
public DirectMessageWriterState() {
stack = new int[INIT_SIZE];

Arrays.fill(stack, INIT_VAL);
Expand Down

0 comments on commit 37e76c4

Please sign in to comment.