zipkin-reporter-java
zipkin-reporter-java copied to clipboard
Add concurrent decorator for blocking senders
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"));