Interface SerializableCallable<V>

Type Parameters:
V - type of return object
All Superinterfaces:
Serializable

public interface SerializableCallable<V> extends Serializable
Callable interface to use in callback mechanisms, allowing to be serialized in Wicket environment.
  • Method Summary

    Modifier and Type
    Method
    Description
    Computes a result, or throws an exception if unable to do so.
  • Method Details

    • call

      V call() throws Exception
      Computes a result, or throws an exception if unable to do so.
      Returns:
      computed result
      Throws:
      Exception - if unable to compute a result