hi, i'd like my robot to catch BLIP_DELETED events. my robots capabilities.xml looks like this:
?xml version="1.0" encoding="utf-8"?> <w:robot xmlns:w="http://wave.google.com/extensions/robots/1.0"> <w:capabilities> <w:capability name="FORM_BUTTON_CLICKED" content="true" /> <w:capability name="WAVELET_SELF_ADDED" content="true" /> <w:capability name="BLIP_DELETED" content="true" /> <w:capability name="WAVELET_SELF_REMOVED" content="true" context="children"/> </w:capabilities> <w:version>1.1.5</w:version> </w:robot> in the java code i try to catch the blip_deleted event as follows: public void processEvents(RobotMessageBundle bundle) { ... List<Event> events = bundle.getEvents(); for (Event event : events) { switch(event.getType()){ ... case BLIP_DELETED: doSomething(event, bundle); break; ... } } ... } i trace the AE logs and i see that that doSomething() method is not called. i think that this flow worked fine once, prior to the latest wave version release, but i'm not sure. do i miss anything here, or this is a bug? thanks!
-- 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.
