Class SharedBlockingCallback
java.lang.Object
org.eclipse.jetty.util.SharedBlockingCallback
Deprecated.
Provides a reusable 
Callback that can block the thread
while waiting to be completed.
A typical usage pattern is:
void someBlockingCall(Object... args) throws IOException
{
    try(Blocker blocker = sharedBlockingCallback.acquire())
    {
        someAsyncCall(args, blocker);
        blocker.block();
    }
}
- 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassDeprecated.A Closeable Callback. - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionacquire()Deprecated.booleanDeprecated.protected voidDeprecated. 
- 
Constructor Details
- 
SharedBlockingCallback
public SharedBlockingCallback()Deprecated. 
 - 
 - 
Method Details
- 
acquire
 - 
fail
Deprecated. 
 - 
 
Blocker.Shared.callback()