Interface ResultHandler

All Superinterfaces:
Serializable
All Known Implementing Classes:
WriteToEntityHandler

public interface ResultHandler extends Serializable
非同期実行したCommandの処理結果により、なんらかの処理を実行したい場合に利用するインタフェース。
※RdbQueueを利用している場合、このhandleメソッドの呼び出しは、非同期処理のステータス更新トランザクションと 同一のトランザクション内で呼び出される。 もし、handleメソッド内で例外が発生した場合はトランザクションがロールバックされるので、 ステータス更新が正常に完了しない(=タスク実行中のままのステータスになり、結果タイムアウトとなる)点注意。
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(String commandResult)
     
    void
    handle(Throwable exception)
     
  • Method Details

    • handle

      void handle(String commandResult)
    • handle

      void handle(Throwable exception)