インタフェース Invokable<R>
- 既知の実装クラスのリスト:
ContentInvoker
,RuleInvoker
public interface Invokable<R>
The interface that abstracts the invokable objects.
When implementing the Invokable
interface, please specify the type of
the value returned by the invoke()
method as a generic
type.
If the invokable object returns the String result:
public class TestInvoker implements Invokable<String> {
* // do something
}
- 導入されたバージョン:
- 1.0.0
-
メソッドの概要