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
Recently, I was trying to get my mind around Retry and ClientConnectionFlow. For the former, the type annotations are good; however, I think they should be changed to match akka-streams conventions (I instead of In and O instead of Out).
I propose C is used for the 'context' type parameter (ClientConnectionFlow[C] instead ClientConnectionFlow[T]). Of course, this is only true if it should have this 'context' meaning. If it really is any type, I would stick with T. However, I wouldn't use T in one place and Context in another.
The text was updated successfully, but these errors were encountered:
Recently, I was trying to get my mind around
Retry
andClientConnectionFlow
. For the former, the type annotations are good; however, I think they should be changed to match akka-streams conventions (I
instead ofIn
andO
instead ofOut
).I propose
C
is used for the 'context' type parameter (ClientConnectionFlow[C]
insteadClientConnectionFlow[T]
). Of course, this is only true if it should have this 'context' meaning. If it really is any type, I would stick withT
. However, I wouldn't useT
in one place andContext
in another.The text was updated successfully, but these errors were encountered: