NAME

Rui::Remote::ClientMessage - a message from the client to the server


DESCRIPTION

The message is received as XML. You get the event described in it as a hash. A client that wants to inform the server of a Click event would send this message:

  <rui>
     <sessionId>1234</sessionId>
     <name>Click</name>
     <sourceId>E3</sourceId>
  </rui>

The event you would get though getEvent() is:

  (sessionId => 1234, name => 'Click', sourceId => 'E3')