Uses of Class
org.ldaptive.transport.DefaultOperationHandle
-
Packages that use DefaultOperationHandle Package Description org.ldaptive.transport org.ldaptive.transport.netty -
-
Uses of DefaultOperationHandle in org.ldaptive.transport
Subclasses of DefaultOperationHandle in org.ldaptive.transport Modifier and Type Class Description class
DefaultCompareOperationHandle
Handle that notifies on the components of a compare request.class
DefaultExtendedOperationHandle
Handle that notifies on the components of an extended request.class
DefaultSearchOperationHandle
Handle that notifies on the components of a search request.Methods in org.ldaptive.transport that return DefaultOperationHandle Modifier and Type Method Description DefaultOperationHandle<Q,S>
DefaultOperationHandle. onComplete(CompleteHandler function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onControl(ResponseControlHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onException(ExceptionHandler function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onIntermediate(IntermediateResponseHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onReferral(ReferralHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onResult(ResultHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onUnsolicitedNotification(UnsolicitedNotificationHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. send()
DefaultOperationHandle<Q,S>
DefaultOperationHandle. throwIf(ResultPredicate function)
Methods in org.ldaptive.transport with parameters of type DefaultOperationHandle Modifier and Type Method Description protected abstract void
TransportConnection. complete(DefaultOperationHandle handle)
Report that the supplied handle has completed.protected abstract void
TransportConnection. write(DefaultOperationHandle handle)
Write the request in the supplied handle to the LDAP server. -
Uses of DefaultOperationHandle in org.ldaptive.transport.netty
Subclasses of DefaultOperationHandle in org.ldaptive.transport.netty Modifier and Type Class Description class
NettyConnection.BindOperationHandle
Bind specific operation handle that locks other operations until the bind completes.Methods in org.ldaptive.transport.netty that return DefaultOperationHandle Modifier and Type Method Description DefaultOperationHandle<AddRequest,AddResponse>
NettyConnection. operation(AddRequest request)
DefaultOperationHandle<DeleteRequest,DeleteResponse>
NettyConnection. operation(DeleteRequest request)
DefaultOperationHandle<ModifyDnRequest,ModifyDnResponse>
NettyConnection. operation(ModifyDnRequest request)
DefaultOperationHandle<ModifyRequest,ModifyResponse>
NettyConnection. operation(ModifyRequest request)
Methods in org.ldaptive.transport.netty with parameters of type DefaultOperationHandle Modifier and Type Method Description protected void
NettyConnection. complete(DefaultOperationHandle handle)
protected void
NettyConnection. write(DefaultOperationHandle handle)
-