Package com.mongodb.internal.connection
Interface ProtocolExecutor
- 
@Deprecated(since="2021-05-27") public interface ProtocolExecutorDeprecated. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <T> Texecute(CommandProtocol<T> protocol, InternalConnection connection, SessionContext sessionContext)Deprecated.<T> Texecute(LegacyProtocol<T> protocol, InternalConnection connection)Deprecated.<T> voidexecuteAsync(CommandProtocol<T> protocol, InternalConnection connection, SessionContext sessionContext, SingleResultCallback<T> callback)Deprecated.<T> voidexecuteAsync(LegacyProtocol<T> protocol, InternalConnection connection, SingleResultCallback<T> callback)Deprecated. 
 - 
 
- 
- 
Method Detail
- 
execute
<T> T execute(LegacyProtocol<T> protocol, InternalConnection connection)
Deprecated. 
- 
executeAsync
<T> void executeAsync(LegacyProtocol<T> protocol, InternalConnection connection, SingleResultCallback<T> callback)
Deprecated. 
- 
execute
<T> T execute(CommandProtocol<T> protocol, InternalConnection connection, SessionContext sessionContext)
Deprecated. 
- 
executeAsync
<T> void executeAsync(CommandProtocol<T> protocol, InternalConnection connection, SessionContext sessionContext, SingleResultCallback<T> callback)
Deprecated. 
 - 
 
 -