t3.remotehrd.server
Interface RemoteHRDServerCallBacks


public interface RemoteHRDServerCallBacks

Allows you to customise the RemoteHRD server by specifying callback methods to handle clients joining and leaving, pointinputdevice state changes, keyboard input, and any other messages received from the client.

Author:
pjt40

Method Summary
 void remoteServerCallBack_clientJoined(int clientId)
           
 void remoteServerCallBack_clientLeft(int clientId)
           
 int remoteServerCallBack_decideShouldCompressInitial(java.awt.image.BufferedImage b)
           
 void remoteServerCallBack_keyboardInput(KeyboardInput k)
           
 void remoteServerCallBack_pointInputDeviceStateChanged(PointInputDeviceState pids)
           
 void remoteServerCallBack_receivedOtherMessageFromClientOrInputSource(java.lang.Object msg)
           
 void remoteServerCallBack_repaintUnbackedTile(Tile tile, java.awt.Rectangle r, java.awt.image.BufferedImage update, java.awt.Graphics2D g)
           
 void remoteServerCallBack_shapeInputDeviceStateChanged(ShapeInputDeviceState sids)
           
 

Method Detail

remoteServerCallBack_receivedOtherMessageFromClientOrInputSource

void remoteServerCallBack_receivedOtherMessageFromClientOrInputSource(java.lang.Object msg)

remoteServerCallBack_clientLeft

void remoteServerCallBack_clientLeft(int clientId)

remoteServerCallBack_clientJoined

void remoteServerCallBack_clientJoined(int clientId)

remoteServerCallBack_decideShouldCompressInitial

int remoteServerCallBack_decideShouldCompressInitial(java.awt.image.BufferedImage b)

remoteServerCallBack_repaintUnbackedTile

void remoteServerCallBack_repaintUnbackedTile(Tile tile,
                                              java.awt.Rectangle r,
                                              java.awt.image.BufferedImage update,
                                              java.awt.Graphics2D g)

remoteServerCallBack_keyboardInput

void remoteServerCallBack_keyboardInput(KeyboardInput k)

remoteServerCallBack_pointInputDeviceStateChanged

void remoteServerCallBack_pointInputDeviceStateChanged(PointInputDeviceState pids)

remoteServerCallBack_shapeInputDeviceStateChanged

void remoteServerCallBack_shapeInputDeviceStateChanged(ShapeInputDeviceState sids)