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

com.alachisoft.ncache.client.internal.command.EnumerationPointer Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.alachisoft.ncache.client.internal.command;

/**
 * @author Administrator
 */
public class EnumerationPointer {
//    private String _id = UUID.randomUUID().toString();
//    private int _chunkId = -1;
//    private boolean isDisposable = false;
//    private String _nodeIpAddress = "";
//
//    private boolean _isSocketServerDispose = false;
//
//    public EnumerationPointer()
//    {
//    }
//
//    public EnumerationPointer(String id, int chunkId)
//    {
//        _id = id;
//        _chunkId = chunkId;
//    }
//
//    public boolean isGroupPointer()
//    {
//        return false;
//    }
//
//    public boolean hasFinished()
//    {
//        return _chunkId == -1;
//    }
//
//    public String getId() {
//        return _id;
//    }
//
//    public int getChunkId() {
//        return _chunkId;
//    }
//
//    public void setChunkId(int _chunkId) {
//        this._chunkId = _chunkId;
//    }
//
//    public boolean isDisposable() {
//        return isDisposable;
//    }
//
//    public void setDisposable(boolean isDisposable) {
//        this.isDisposable = isDisposable;
//    }
//
//     public String getNodeIpAddress() {
//        return _nodeIpAddress;
//    }
//
//    public void setNodeIpAddress(String _nodeIpAddress) {
//        this._nodeIpAddress = _nodeIpAddress;
//    }
//
//    public boolean isSocketServerDispose() {
//        return _isSocketServerDispose;
//    }
//
//    public void setSocketServerDispose(boolean _isSocketServerDispose) {
//        this._isSocketServerDispose = _isSocketServerDispose;
//    }
//
//    @Override
//    public boolean equals(Object obj)
//    {
//        boolean equals = false;
//
//        if (obj instanceof EnumerationPointer)
//        {
//            EnumerationPointer other = (EnumerationPointer)obj;
//            equals = _id.equals(other._id);
//        }
//
//        return equals;
//    }
//
//    @Override
//    public int hashCode()
//    {
//        return _id.hashCode();
//    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy