All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.spy.memcached.EVCacheMemcachedNodeROImpl Maven / Gradle / Ivy

The newest version!
package net.spy.memcached;

import java.io.IOException;
import java.net.SocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.SocketChannel;
import java.util.Collection;

import net.spy.memcached.ops.Operation;

public class EVCacheMemcachedNodeROImpl implements MemcachedNode {

    private final MemcachedNode root;

    public EVCacheMemcachedNodeROImpl(MemcachedNode n) {
        super();
        root = n;
    }

    public String toString() {
        return root.toString();
    }

    public void addOp(Operation op) {
        throw new UnsupportedOperationException();
    }

    public void insertOp(Operation op) {
        throw new UnsupportedOperationException();
    }

    public void connected() {
        throw new UnsupportedOperationException();
    }

    public void copyInputQueue() {
        throw new UnsupportedOperationException();
    }

    public void fillWriteBuffer(boolean optimizeGets) {
        throw new UnsupportedOperationException();
    }

    public void fixupOps() {
        throw new UnsupportedOperationException();
    }

    public int getBytesRemainingToWrite() {
        return root.getBytesRemainingToWrite();
    }

    public SocketChannel getChannel() {
        throw new UnsupportedOperationException();
    }

    public Operation getCurrentReadOp() {
        throw new UnsupportedOperationException();
    }

    public Operation getCurrentWriteOp() {
        throw new UnsupportedOperationException();
    }

    public ByteBuffer getRbuf() {
        throw new UnsupportedOperationException();
    }

    public int getReconnectCount() {
        return root.getReconnectCount();
    }

    public int getSelectionOps() {
        return root.getSelectionOps();
    }

    public SelectionKey getSk() {
        throw new UnsupportedOperationException();
    }

    public SocketAddress getSocketAddress() {
        return root.getSocketAddress();
    }

    public ByteBuffer getWbuf() {
        throw new UnsupportedOperationException();
    }

    public boolean hasReadOp() {
        return root.hasReadOp();
    }

    public boolean hasWriteOp() {
        return root.hasReadOp();
    }

    public boolean isActive() {
        return root.isActive();
    }

    public void reconnecting() {
        throw new UnsupportedOperationException();
    }

    public void registerChannel(SocketChannel ch, SelectionKey selectionKey) {
        throw new UnsupportedOperationException();
    }

    public Operation removeCurrentReadOp() {
        throw new UnsupportedOperationException();
    }

    public Operation removeCurrentWriteOp() {
        throw new UnsupportedOperationException();
    }

    public void setChannel(SocketChannel to) {
        throw new UnsupportedOperationException();
    }

    public void setSk(SelectionKey to) {
        throw new UnsupportedOperationException();
    }

    public void setupResend() {
        throw new UnsupportedOperationException();
    }

    public void transitionWriteItem() {
        throw new UnsupportedOperationException();
    }

    public int writeSome() throws IOException {
        throw new UnsupportedOperationException();
    }

    public Collection destroyInputQueue() {
        throw new UnsupportedOperationException();
    }

    public void authComplete() {
        throw new UnsupportedOperationException();
    }

    public void setupForAuth() {
        throw new UnsupportedOperationException();
    }

    public int getContinuousTimeout() {
        throw new UnsupportedOperationException();
    }

    public void setContinuousTimeout(boolean isIncrease) {
        throw new UnsupportedOperationException();
    }

    public boolean isAuthenticated() {
        throw new UnsupportedOperationException();
    }

    public long lastReadDelta() {
        throw new UnsupportedOperationException();
    }

    public void completedRead() {
        throw new UnsupportedOperationException();
    }

    public MemcachedConnection getConnection() {
        throw new UnsupportedOperationException();
    }

    public void setConnection(MemcachedConnection connection) {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy