本文整理汇总了Java中org.apache.zookeeper.server.SessionTrackerImpl类的典型用法代码示例。如果您正苦于以下问题:Java SessionTrackerImpl类的具体用法?Java SessionTrackerImpl怎么用?Java SessionTrackerImpl使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SessionTrackerImpl类属于org.apache.zookeeper.server包,在下文中一共展示了SessionTrackerImpl类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: LearnerSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
public LearnerSessionTracker(SessionExpirer expirer,
ConcurrentHashMap<Long, Integer> sessionsWithTimeouts, long id,
ZooKeeperServerListener listener) {
this.expirer = expirer;
this.sessionsWithTimeouts = sessionsWithTimeouts;
this.serverId = id;
nextSessionId = SessionTrackerImpl.initializeNextSession(this.serverId);
}
示例2: LearnerSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
public LearnerSessionTracker(SessionExpirer expirer,
ConcurrentMap<Long, Integer> sessionsWithTimeouts,
int tickTime, long id, boolean localSessionsEnabled,
ZooKeeperServerListener listener) {
this.expirer = expirer;
this.touchTable.set(new ConcurrentHashMap<Long, Integer>());
this.globalSessionsWithTimeouts = sessionsWithTimeouts;
this.serverId = id;
nextSessionId.set(SessionTrackerImpl.initializeNextSession(serverId));
this.localSessionsEnabled = localSessionsEnabled;
if (this.localSessionsEnabled) {
createLocalSessionTracker(expirer, tickTime, id, listener);
}
}
示例3: LeaderSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
public LeaderSessionTracker(SessionExpirer expirer,
ConcurrentMap<Long, Integer> sessionsWithTimeouts,
int tickTime, long id, boolean localSessionsEnabled,
ZooKeeperServerListener listener) {
this.globalSessionTracker = new SessionTrackerImpl(
expirer, sessionsWithTimeouts, tickTime, id, listener);
this.localSessionsEnabled = localSessionsEnabled;
if (this.localSessionsEnabled) {
createLocalSessionTracker(expirer, tickTime, id, listener);
}
serverId = id;
}
示例4: LearnerSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
public LearnerSessionTracker(SessionExpirer expirer,
ConcurrentHashMap<Long, Integer> sessionsWithTimeouts, long id) {
this.expirer = expirer;
this.sessionsWithTimeouts = sessionsWithTimeouts;
this.serverId = id;
nextSessionId = SessionTrackerImpl.initializeNextSession(this.serverId);
}
示例5: createSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
@Override
public void createSessionTracker() {
sessionTracker = new SessionTrackerImpl(this, getZKDatabase()
.getSessionWithTimeOuts(), tickTime, self.getId(),
getZooKeeperServerListener());
}
示例6: startSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
@Override
protected void startSessionTracker() {
((SessionTrackerImpl)sessionTracker).start();
}
示例7: createSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
@Override
public void createSessionTracker() {
sessionTracker = new SessionTrackerImpl(this, getZKDatabase().getSessionWithTimeOuts(),
tickTime, self.getId());
}
示例8: createSessionTracker
import org.apache.zookeeper.server.SessionTrackerImpl; //导入依赖的package包/类
@Override
protected void createSessionTracker() {
sessionTracker = new SessionTrackerImpl(this, getZKDatabase().getSessionWithTimeOuts(),
tickTime, self.getId());
((SessionTrackerImpl)sessionTracker).start();
}