You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BootstrapBuilder while possible to configure some params, does not allow the functionality to entirely create the ServerBootstrap yourself by passing in already-existing EventLoopGroups. This means that when trying to utilize multiple RSProt NetworkService in a single application, you cannot re-use your EventLoopGroup, leading to poor performance.
Something like a BootstrapProvider interface should be introduced, allowing the API user to provide their own ServerBootstrap if they choose. BootstrapBuilder would then be renamed BootstrapProviderBuilder and provide from the build result.
The text was updated successfully, but these errors were encountered:
BootstrapBuilder
while possible to configure some params, does not allow the functionality to entirely create theServerBootstrap
yourself by passing in already-existingEventLoopGroup
s. This means that when trying to utilize multiple RSProtNetworkService
in a single application, you cannot re-use yourEventLoopGroup
, leading to poor performance.Something like a
BootstrapProvider
interface should be introduced, allowing the API user to provide their ownServerBootstrap
if they choose.BootstrapBuilder
would then be renamedBootstrapProviderBuilder
and provide from the build result.The text was updated successfully, but these errors were encountered: