Uses of Interface
marauroa.server.game.messagehandler.DelayedEventHandler
Package
Description
The package stores the connection validator.
-
Uses of DelayedEventHandler in marauroa.server.auth
Modifier and TypeMethodDescriptionvoid
AuthenticationManager.verify(SecuredLoginInfo info, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Verify that a player is whom he/she says it is.void
DatabaseAuthenticationManager.verify(SecuredLoginInfo info, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Verify that a player is whom he/she says it is. -
Uses of DelayedEventHandler in marauroa.server.game.dbcommand
Modifier and TypeFieldDescriptionprotected DelayedEventHandler
DBCommandWithCallback.callback
a handler that will be informed about the resultModifierConstructorDescriptionprotected
DBCommandWithCallback(DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Creates a new LoadCharacterCommandLoadActiveCharacterCommand(String username, String character, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Creates a new LoadCharacterCommandLoadAllActiveCharactersCommand(String username, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Creates a new LoadCharacterCommandLoadAllCharactersCommand(String username, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Creates a new LoadCharacterCommandLoadBanListCommand(DelayedEventHandler callback)
Creates a new LoadBanListCommandLoadCharacterCommand(String username, String character, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
Creates a new LoadCharacterCommandLoginCommand(SecuredLoginInfo info, DelayedEventHandler callback, int clientid, Channel channel, int protocolVersion)
creates a new LoginCommand. -
Uses of DelayedEventHandler in marauroa.server.game.messagehandler
Modifier and TypeClassDescriptionclass
disconnects a player and removes the character from the world.class
sends the character list to the clientModifier and TypeMethodDescriptionvoid
DelayedEventHandlerThread.addDelayedEvent(DelayedEventHandler handler, Object data)
adds a delayed event for processing. -
Uses of DelayedEventHandler in marauroa.server.net.validator
Modifier and TypeClassDescriptionclass
The ConnectionValidator validates the ariving connections, currently it can only check if the address is banned.