This is a client project for jetserver library. An example main class is provided in src/main/test folder.
Execute org.menacheri.TestClass from command line or eclipse and it will connect to remote jetserver and start receiving events. Assumption is that TestClass using accurate hostname and port number. Execution
Pointers on main classes, classpaths and command line flags.
**To start the client **
jetclient can be executed from console using below command.
java -cp ./jetclient-0.1.jar;./netty-3.3.1.Final.jar org.menacheri.TestClass
The general usage steps could be as outlined below.
- Add jetclient-0.1.jar and netty-3.3.1.Final.jar to your project class path.
- Create LoginBuilder, session and SessionEventHandler as shown in TestClass. example-games project has a ZombieJetClient which shows a better example.
- Use the SessionEventHandler to accept events from remote server as well as to write back events to the server.
- To write back to the remote jetserver create a tcp/udp network event using the factory method Event event = Events.networkEvent(messageBuffer); or Events.networkEvent(messageBuffer,DeliveryGuaranty.Fast);
- Now call session.onEvent(event); and this event will be transmitted to the remote jetserver.
netty-3.3.1.Final.jar