Package com.mongodb.connection.netty
Class NettyStreamFactoryFactory
- java.lang.Object
-
- com.mongodb.connection.netty.NettyStreamFactoryFactory
-
- All Implemented Interfaces:
StreamFactoryFactory
public class NettyStreamFactoryFactory extends Object implements StreamFactoryFactory
AStreamFactoryFactoryimplementation for Netty-based streams.- Since:
- 3.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNettyStreamFactoryFactory.BuilderA builder for an instance ofNettyStreamFactoryFactory.
-
Constructor Summary
Constructors Constructor Description NettyStreamFactoryFactory()Deprecated.Usebuilder()instead to construct theNettyStreamFactoryFactory.NettyStreamFactoryFactory(io.netty.channel.EventLoopGroup eventLoopGroup, io.netty.buffer.ByteBufAllocator allocator)Deprecated.Usebuilder()instead to construct theNettyStreamFactoryFactory.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NettyStreamFactoryFactory.Builderbuilder()Gets a builder for an instance ofNettyStreamFactoryFactory.StreamFactorycreate(SocketSettings socketSettings, SslSettings sslSettings)Create aStreamFactorywith the given settings.StringtoString()
-
-
-
Constructor Detail
-
NettyStreamFactoryFactory
@Deprecated public NettyStreamFactoryFactory()
Deprecated. Usebuilder()instead to construct theNettyStreamFactoryFactory.Construct an instance with the defaultEventLoopGroupandByteBufAllocator.
-
NettyStreamFactoryFactory
@Deprecated public NettyStreamFactoryFactory(io.netty.channel.EventLoopGroup eventLoopGroup, io.netty.buffer.ByteBufAllocator allocator)
Deprecated. Usebuilder()instead to construct theNettyStreamFactoryFactory.Construct an instance with the givenEventLoopGroupandByteBufAllocator.- Parameters:
eventLoopGroup- the non-null event loop groupallocator- the non-null byte buf allocator
-
-
Method Detail
-
builder
public static NettyStreamFactoryFactory.Builder builder()
Gets a builder for an instance ofNettyStreamFactoryFactory.- Returns:
- the builder
- Since:
- 3.3
-
create
public StreamFactory create(SocketSettings socketSettings, SslSettings sslSettings)
Description copied from interface:StreamFactoryFactoryCreate aStreamFactorywith the given settings.- Specified by:
createin interfaceStreamFactoryFactory- Parameters:
socketSettings- the socket settingssslSettings- the SSL settings- Returns:
- a stream factory that will apply the given settins
-
-