Package org.ldaptive.concurrent
Interface OperationWorker<Q extends Request,S extends Result>
- Type Parameters:
Q
- type of ldap requestS
- type of ldap response
- All Known Implementing Classes:
AbstractOperationWorker
,AddOperationWorker
,CompareOperationWorker
,DeleteOperationWorker
,ModifyDnOperationWorker
,ModifyOperationWorker
,SearchOperationWorker
Interface for ldap operation workers. These interface is meant to facilitate executing multiple requests and
processing multiple responses.
-
Method Summary
Modifier and TypeMethodDescriptionExecute an ldap operation for each request and waits for each operation to complete.Execute an ldap operation for each request.
-
Method Details
-
send
Execute an ldap operation for each request.- Parameters:
requests
- containing the data required by this operation- Returns:
- handle responses for this operation
-
execute
Execute an ldap operation for each request and waits for each operation to complete.- Parameters:
requests
- containing the data required by this operation- Returns:
- responses for this operation
-