Skip to content

Commit

Permalink
v6.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
839128 committed Dec 19, 2020
1 parent be48b3c commit c0fdbbb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void initSession() {
* 触发AIO的写操作,
* 需要调用控制同步
*/
void writeCompleted() {
public void writeCompleted() {
if (writeBuffer == null) {
writeBuffer = byteBuf.poll();
} else if (!writeBuffer.buffer().hasRemaining()) {
Expand Down Expand Up @@ -228,7 +228,7 @@ public final boolean isInvalid() {
*
* @param eof 输入流是否已关闭
*/
void readCompleted(boolean eof) {
public void readCompleted(boolean eof) {
if (status == SESSION_STATUS_CLOSED) {
return;
}
Expand Down Expand Up @@ -348,7 +348,7 @@ private void assertChannel() throws IOException {
}
}

ServerConfig<T> getServerConfig() {
public ServerConfig<T> getServerConfig() {
return this.serverConfig;
}

Expand Down

0 comments on commit c0fdbbb

Please sign in to comment.