Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Async event handlers must have the following signature :return void, and accept a single argument of type AsyncResponse :

Code Block
languagejava
titlesignature
public void doSomething(AsyncResponse asyncResponse);

...

When handling such events, Stripes will start the asynchronous cycle, and let you complete by invoking one of the asyncResponse.complete() variants.

...