Package io.github.joealisson.mmocore
Interface ClientFactory<T extends Client<Connection<T>>>
-
public interface ClientFactory<T extends Client<Connection<T>>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcreate(Connection<T> connection)This method must create a Client using the connection parameter.
-
-
-
Method Detail
-
create
T create(Connection<T> connection)
This method must create a Client using the connection parameter.- Parameters:
connection- - the underlying connection to client.- Returns:
- a client implementation.
-
-