Changes between Version 14 and Version 15 of WikiStart


Ignore:
Timestamp:
02/28/19 17:00:57 (6 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v14 v15  
    2828The parties server is a component in the bigger genius2 framework. Its main function is to
    2929* create an running instance of a party when a certain address on the server is requested
    30 * It then returns a websocket on which the party can be contacted
    31 * The connection implements something like {{{Connection<Inform, Action>}}} (see the references module in genius2 core)
    32  * accepts Inform objects and these are passed into the party (see the the party module in genius2 core)
    33  * can send Action objects as requested by the agent (see the events module in genius2 core)
     30* It then returns the address of a a websocket on which the party can be contacted. Usually this websocket will be on the same computer, but it might be elsewhere)
     31* The websocket connection implements
     32 * accepts JSON-formatted Inform objects and these are passed into the party (see the the party module in genius2 core)
     33 * can send JSON-formatted Action objects as requested by the agent (see the events module in genius2 core)
    3434
    35 
     35In Genius2, the class {{{Connection<Inform, Action>}}} (see the references module in genius2 core) represents an abstract connection, the actual conversion is done with Jackson in the partiesserver.
    3636
    3737== Using the source code ==