Interface IWorkpageProcessingEventListener

All Superinterfaces:
Serializable
All Known Subinterfaces:
IMultiWorkplaceWorkpageProcessingEventListener
All Known Implementing Classes:
MultiWorkplaceWorkpageDefaultProcessingEventListener, WorkpageDefaultProcessingEventListener

public interface IWorkpageProcessingEventListener extends Serializable
Interface that needs to be implemented when you want to get notified by the workpage about workpage events thrown on other workpages.

The adding of instances is done via IWorkpage.addWorkpageProcessingEventListener(IWorkpageProcessingEventListener).

We recommend to extend your implementation from WorkpageDefaultProcessingEventListener in order to automatically adapt to future extensions of this interface.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notification about event thrown in other workpage.
  • Method Details

    • processEvent

      void processEvent(WorkpageProcessingEvent event)
      Notification about event thrown in other workpage. The implementation must check if the event is relevant for processing and must trigger processing correspondingly.