Package com.cxy.redisclient.presentation.component

Source Code of com.cxy.redisclient.presentation.component.Page

package com.cxy.redisclient.presentation.component;

import com.cxy.redisclient.service.NodeService;

public abstract class Page implements IPage {
  protected int id;
  protected int db;
  protected String key;
   
  public Page(int id, int db, String key){
    this.id = id;
    this.db = db;
    this.key = key;
  }
 
  @Override
  public long getCount() {
    NodeService service = new NodeService();
    return service.getSize(id, db, key);
  }
}
TOP

Related Classes of com.cxy.redisclient.presentation.component.Page

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.