Uses of Class
ch.autumo.beetroot.server.message.ServerCommand
Packages that use ServerCommand
Package
Description
Server implementations.
Communication components to exchange data and files between the client and server.
Requests/Responses for the file communication component.
Messages for the data communication component.
Dispatcher interfaces for creating your own distributed dispatchers (modules) for the beetRoot client-server framework.
Log module/dispatcher with remote and local dispatcher implementations.
-
Uses of ServerCommand in ch.autumo.beetroot.server
Methods in ch.autumo.beetroot.server with parameters of type ServerCommandModifier and TypeMethodDescriptionBaseServer.processServerCommand(ServerCommand command) This method is called when a server command has been received.FileServer.processServerCommand(ServerCommand command) This method is called when a server command has been received.protected voidBaseServer.sendServerCommand(ServerCommand command) You can send local server commands to be send to the running server for possible custom operations. -
Uses of ServerCommand in ch.autumo.beetroot.server.communication
Methods in ch.autumo.beetroot.server.communication that return ServerCommandModifier and TypeMethodDescriptionstatic ServerCommandCommunicator.readCommand(DataInputStream in) Read a server command server side.static ServerCommandCommunicator.readJsonCommand(InputStream in, int length) Read a JSON server command server side.Methods in ch.autumo.beetroot.server.communication with parameters of type ServerCommandModifier and TypeMethodDescriptionprotected static booleanCommunicator.isInternalCommand(ServerCommand command) Is it an internal command?static ClientAnswerClientCommunicator.sendServerCommand(ServerCommand command) Send a server command client side. -
Uses of ServerCommand in ch.autumo.beetroot.server.message
Methods in ch.autumo.beetroot.server.message that return ServerCommandModifier and TypeMethodDescriptionstatic ServerCommandCreate a new server command out of transfer string.static ServerCommandCreate a new server command out of JSON transfer string. -
Uses of ServerCommand in ch.autumo.beetroot.server.message.file
Subclasses of ServerCommand in ch.autumo.beetroot.server.message.fileModifier and TypeClassDescriptionclassFile delete command; client-side.classDownload request; client-side.classPing download request.classPing upload request.classUpload request; client-side. -
Uses of ServerCommand in ch.autumo.beetroot.server.modules
Methods in ch.autumo.beetroot.server.modules with parameters of type ServerCommandModifier and TypeMethodDescriptionDispatcher.dispatch(ServerCommand serverCommand) Dispatch server command and deliver an answer for the client. -
Uses of ServerCommand in ch.autumo.beetroot.server.modules.log
Methods in ch.autumo.beetroot.server.modules.log with parameters of type ServerCommand