--
Vous recevez ce message, car vous êtes abonné au groupe Google Groupes "JRebirth Users".
Pour vous désabonner de ce groupe et ne plus recevoir d'e-mails le concernant, envoyez un e-mail à l'adresse jrebirth-user...@googlegroups.com.
Pour obtenir davantage d'options, consultez la page https://groups.google.com/d/optout.
this.wave.status(Status.Failed);
When the return type of the method is VOID, no wave is sent
WaveType DO_SOMETHING = Builders.waveType("SOMETHING"); // A basic wave definition
WaveType DO_SOMETHING = Builders.waveType("SOMETHING").returnAction("SOMETHING_DONE"); // I want to be warned when service has finished
WaveType DO_SOMETHING = Builders.waveType("SOMETHING").returnAction("SOMETHING_DONE").returnItem(SOME_SERVICE_RESPONSE); // I want to be warned and get the result
WaveType DO_SOMETHING = Builders.waveType("SOMETHING").onError("ERROR_WAVE"); // Send a wave when an exception occure
WaveType DO_SOMETHING = Builders.waveType("SOMETHING").onError(SomeDummyException.class, "SPECIFIC_ERROR_WAVE"); // Send a wave when an certain kind of exception occure