public interface GemfireFunctionOperations
修飾子と型 | メソッドと説明 |
---|---|
<T> IterableSE<T> | execute(org.apache.geode.cache.execute.Function function, ObjectSE... args) 指定された引数を使用して、未登録の Pivotal GemFire 関数を実行します。 |
<T> T | execute(GemfireFunctionCallback<T> callback) ネイティブの Pivotal GemFire Execution インスタンスを使用して Pivotal GemFire 関数を実行します。 |
<T> IterableSE<T> | execute(StringSE functionId, ObjectSE... args) 指定された ID に登録された Pivotal GemFire 関数を実行します。 |
<T> T | executeAndExtract(org.apache.geode.cache.execute.Function function, ObjectSE... args) 期待されるシングルトン結果を使用して、登録されていない Pivotal GemFire 関数を実行します。 |
<T> T | executeAndExtract(StringSE functionId, ObjectSE... args) ID と期待されるシングルトン結果で登録された Pivotal GemFire 関数を実行します |
void | executeWithNoResult(StringSE functionId, ObjectSE... args) 指定された ID に登録され、戻り値のない Pivotal GemFire 関数を実行します。 |
<T> IterableSE<T> execute(org.apache.geode.cache.execute.Function function, ObjectSE... args)
T
- 関数実行の結果の型を指定する型パラメーター。function
- 実行する Pivotal GemFire 関数オブジェクト。args
- 関数呼び出しに対するオブジェクト引数の配列。<T> IterableSE<T> execute(StringSE functionId, ObjectSE... args)
T
- 関数実行の結果の型を指定する型パラメーター。functionId
- Pivotal GemFire 関数が登録されている ID。args
- 関数呼び出しに対するオブジェクト引数の配列。<T> T executeAndExtract(org.apache.geode.cache.execute.Function function, ObjectSE... args)
T
- 関数実行の結果の型を指定する型パラメーター。function
- Pivotal GemFire 関数オブジェクト。args
- 関数呼び出しに対するオブジェクト引数の配列。Function
<T> T executeAndExtract(StringSE functionId, ObjectSE... args)
T
- 関数実行の結果の型を指定する型パラメーター。functionId
- Pivotal GemFire 関数が登録されている ID。args
- 関数呼び出しに対するオブジェクト引数の配列。void executeWithNoResult(StringSE functionId, ObjectSE... args)
functionId
- Pivotal GemFire 関数が登録されている ID。args
- 関数呼び出しに対するオブジェクト引数の配列。<T> T execute(GemfireFunctionCallback<T> callback)
Execution
インスタンスを使用して Pivotal GemFire 関数を実行します。T
- 関数実行の結果の型を指定する型パラメーター。callback
- 実行インスタンスを提供するコールバック。GemfireFunctionCallback
Copyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.