replicationdynamicslavestorageimpl.java
来自「这个是perst-269.zip下面的SOURCECODE,和大家分享了。」· Java 代码 · 共 35 行
JAVA
35 行
package org.garret.perst.impl;
import java.io.*;
import java.net.*;
import org.garret.perst.*;
public class ReplicationDynamicSlaveStorageImpl extends ReplicationSlaveStorageImpl
{
public ReplicationDynamicSlaveStorageImpl(String host, int port) {
this.host = host;
this.port = port;
}
public void open(IFile file, int pagePoolSize) {
initialized = false;
prevIndex = -1;
outOfSync = true;
super.open(file, pagePoolSize);
}
Socket getSocket() throws IOException {
if (opened) {
throw new StorageError(StorageError.CONNECTION_FAILURE);
}
return new Socket(host, port);
}
protected String host;
protected int port;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?