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 classDefaultCompareOperationHandleHandle that notifies on the components of a compare request.classDefaultExtendedOperationHandleHandle that notifies on the components of an extended request.classDefaultSearchOperationHandleHandle that notifies on the components of a search request.Fields in org.ldaptive.transport with type parameters of type DefaultOperationHandle Modifier and Type Field Description private Map<Integer,DefaultOperationHandle<?,?>>HandleMap. pendingMap of message IDs to their operation handle.Methods in org.ldaptive.transport that return DefaultOperationHandle Modifier and Type Method Description DefaultOperationHandle<?,?>HandleMap. get(int id)Returns the operation handle for the supplied message id.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. onReferralResult(ReferralResultHandler<S> function)DefaultOperationHandle<Q,S>DefaultOperationHandle. onResult(ResultHandler... function)DefaultOperationHandle<Q,S>DefaultOperationHandle. onUnsolicitedNotification(UnsolicitedNotificationHandler... function)DefaultOperationHandle<?,?>HandleMap. put(int id, DefaultOperationHandle<?,?> handle)Puts the supplied operation handle into the queue if the supplied id doesn't already exist in the queue.DefaultOperationHandle<?,?>HandleMap. remove(int id)Removes the operation handle from the supplied message id.DefaultOperationHandle<Q,S>DefaultOperationHandle. send()DefaultOperationHandle<Q,S>DefaultOperationHandle. throwIf(ResultPredicate function)Methods in org.ldaptive.transport that return types with arguments of type DefaultOperationHandle Modifier and Type Method Description Collection<DefaultOperationHandle<?,?>>HandleMap. handles()Returns all the operation handles in the queue.Methods in org.ldaptive.transport with parameters of type DefaultOperationHandle Modifier and Type Method Description protected abstract voidTransportConnection. complete(DefaultOperationHandle<?,?> handle)Report that the supplied handle has completed.DefaultOperationHandle<?,?>HandleMap. put(int id, DefaultOperationHandle<?,?> handle)Puts the supplied operation handle into the queue if the supplied id doesn't already exist in the queue.protected abstract voidTransportConnection. 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 classNettyConnection.BindOperationHandleBind 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 voidNettyConnection. complete(DefaultOperationHandle<?,?> handle)protected voidNettyConnection. write(DefaultOperationHandle<?,?> handle)
-