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