zipkin-reporter-java icon indicating copy to clipboard operation
zipkin-reporter-java copied to clipboard

Add concurrent decorator for blocking senders

Open codefromthecrypt opened this issue 9 years ago • 0 comments

Senders like UrlConnectionSender are blocking. We could add a decorator to make them not blocking, ex by using an executor.

Rough sketch..

sender = withConcurrency(10, URLConnectionSender.create("http://localhost:9411/api/v1/spans"));

codefromthecrypt avatar Aug 27 '16 09:08 codefromthecrypt