public interface AsyncConnectorInfoManager extends ConnectorInfoManager
ConnectorInfo
instances, each of which describes a connector that is available.Modifier and Type | Method and Description |
---|---|
org.forgerock.util.promise.Promise<ConnectorInfo,RuntimeException> |
findConnectorInfoAsync(ConnectorKey key)
Add a promise which will be fulfilled with the
ConnectorInfo for the given
. |
org.forgerock.util.promise.Promise<ConnectorInfo,RuntimeException> |
findConnectorInfoAsync(ConnectorKeyRange keyRange)
Add a promise which will be fulfilled with the
ConnectorInfo for the given
. |
findConnectorInfo, getConnectorInfos
org.forgerock.util.promise.Promise<ConnectorInfo,RuntimeException> findConnectorInfoAsync(ConnectorKey key)
ConnectorInfo
for the given
.
Add a Promise which will be fulfilled immediately if the
ConnectorInfo
is maintained
currently by this instance or later when it became available.key
- org.forgerock.util.promise.Promise<ConnectorInfo,RuntimeException> findConnectorInfoAsync(ConnectorKeyRange keyRange)
ConnectorInfo
for the given
.
Add a Promise which will be fulfilled immediately if the
ConnectorInfo
is maintained
currently by this instance or later when it became available.
There may be multiple ConnectorInfo matching the range. The
implementation can only randomly fulfill the promise. It can not grantee
the highest version to return because it may became available after the
promised added and after a lower version of ConnectorInfo became
available in this manager.keyRange
- Copyright © 2018–2025. All rights reserved.