EventStore.JVM icon indicating copy to clipboard operation
EventStore.JVM copied to clipboard

Cannot increase buffer size for persistent actor connection

Open ghostbuster91 opened this issue 4 years ago • 0 comments

Hi,

The method which defines this buffer is defined on AbstractPersistentSubscriptionActor which is package private as the only one actor which implement this interface.

private[eventstore] trait AbstractPersistentSubscriptionActor[T] extends Actor with ActorLogging {
//....
  def subscribeToPersistentStream(): Unit = toConnection(PS.Connect(EventStream.Id(streamId.streamId), groupName, BUFFER_SIZE))
}

Can we make it somehow configurable?

ghostbuster91 avatar Jul 30 '20 10:07 ghostbuster91