Hi,

I'm currently playing with the Wave api using both the python and java
clients, and I just can catch two triggered events:
WAVELET_PARTICIPANTS_CHANGED and WAVELET_SELF_ADDED.

I've setup a simple notifier creating a blip when any event is
triggered (example using Java):

@SuppressWarnings("serial")
public class EarlyWaveServlet extends AbstractRobotServlet
{
  @Override
  public void processEvents(RobotMessageBundle bundle)
  {
    for (Event e : bundle.getEvents())
    {
      bundle.
        getWavelet().
        appendBlip().
        getDocument().
        append("new event catched: " + e.getType().toString())
      ;
    }
  }
}

Any reason all other documented events than the two I previously
mentioned are not dispatched, and if they are why my bot can't manage
to be notified?

Thanks.

PS: sorry if this question is dumb, I'm a beginner.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Wave API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to