Add convenience connectWithIndication() method.

This commit is contained in:
Andrew Steinborn
2018-10-21 17:49:51 -04:00
parent 8d97e98920
commit 3bd48dec99
2 changed files with 16 additions and 3 deletions

View File

@@ -467,8 +467,8 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
}
@Override
public void fireAndForget() {
connect()
public CompletableFuture<Boolean> connectWithIndication() {
return connect()
.whenCompleteAsync((status, throwable) -> {
if (throwable != null) {
handleConnectionException(server, throwable);
@@ -489,7 +489,13 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
handleConnectionException(server, Disconnect.create(status.getReason().orElse(ConnectionMessages.INTERNAL_SERVER_CONNECTION_ERROR)));
break;
}
}, connection.eventLoop());
}, connection.eventLoop())
.thenApply(Result::isSuccessful);
}
@Override
public void fireAndForget() {
connectWithIndication();
}
}
}