[
https://issues.apache.org/jira/browse/HTTPCLIENT-1806?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15853728#comment-15853728
]
ASF GitHub Bot commented on HTTPCLIENT-1806:
--------------------------------------------
GitHub user Coderec opened a pull request:
https://github.com/apache/httpcore/pull/36
HTTPCLIENT-1806 Add a route inteceptor
https://issues.apache.org/jira/browse/HTTPCLIENT-1806
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/Coderec/httpcore cuibaosen/HTTPCLIENT-1806
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/httpcore/pull/36.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #36
----
commit 31256224f8aba4c22c0cfb063465d8237b99f2b6
Author: CuiBaosen <[email protected]>
Date: 2017-02-05T23:36:57Z
HTTPCLIENT-1806 Add a route inteceptor
----
> Add a route inteceptor
> ----------------------
>
> Key: HTTPCLIENT-1806
> URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1806
> Project: HttpComponents HttpClient
> Issue Type: Improvement
> Components: HttpClient (async), HttpClient (classic)
> Reporter: Baosen Cui
> Priority: Minor
> Fix For: 5.0
>
>
> I had meet a problem that I need to log the time cost by method
> “establishRoute”( in httpclient ).
> Since there seems nothing to support, I wrote a interceptor into HttpCore
> coping the structure of “HttpProcessor"
> Would this be accepted? Or there has already something alike?
> @ThreadSafe // provided injected dependencies are immutable
> public final class ImmutableRouteProcessor implements RouteProcessor {
> ...
> }
> public interface PostRouteInterceptor {
> void postProcess(final HttpRequest request, final HttpContext context);
> }
> public interface PreRouteInterceptor {
> void preProcess(final HttpRequest request, final HttpContext context);
> }
> public interface RouteProcessor extends PreRouteInterceptor,
> PostRouteInterceptor {
> }
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]