Author: gertv
Date: Sun Aug 19 12:01:49 2012
New Revision: 1374741
URL: http://svn.apache.org/viewvc?rev=1374741&view=rev
Log:
SMXCOMP-937: Add LateReponseStrategy and HttpProviderListener
Added:
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/LateResponseStrategy.java
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpProviderListener.java
Added:
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/LateResponseStrategy.java
URL:
http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/LateResponseStrategy.java?rev=1374741&view=auto
==============================================================================
---
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/LateResponseStrategy.java
(added)
+++
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/LateResponseStrategy.java
Sun Aug 19 12:01:49 2012
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.servicemix.http;
+
+/**
+ * Determines how the HTTP consumer endpoints should handle a late response
from the NMR
+ */
+public enum LateResponseStrategy {
+
+ /**
+ * Terminate the exchange with an ERROR status and log an exception for
the late response
+ */
+ error,
+
+ /**
+ * End the exchange with a DONE status and log a warning for the late
response
+ */
+ warning
+
+}
Added:
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpProviderListener.java
URL:
http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpProviderListener.java?rev=1374741&view=auto
==============================================================================
---
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpProviderListener.java
(added)
+++
servicemix/components/trunk/bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpProviderListener.java
Sun Aug 19 12:01:49 2012
@@ -0,0 +1,58 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.servicemix.http.endpoints;
+
+import org.eclipse.jetty.client.HttpClient;
+
+import javax.jbi.messaging.MessageExchange;
+
+/**
+ * Listener interface that allows for monitoring Jetty client instances in a
{@link HttpProviderEndpoint} and
+ * to handle some Jetty client events
+ */
+public interface HttpProviderListener {
+
+ /*
+ * Called when the endpoint starts using the Jetty client instance
+ *
+ * @param client the Jetty client instance
+ */
+ void startJettyClientMonitoring(HttpClient client);
+
+ /**
+ * Called when the endpoint stops using the Jetty client instance
+ *
+ * @param client the Jetty client instance
+ */
+ void stopJettyClientMonitoring(HttpClient client);
+
+ /**
+ * Called when the Jetty HTTP exchange gets committed, also passing along
the corresponding JBI exchange
+ *
+ * @param jbiExchange the JBI message exchange
+ * @param httpExchange the Jetty HTTP exchange
+ */
+ void onRequestCommited(MessageExchange jbiExchange,
HttpProviderEndpoint.Exchange httpExchange);
+
+ /**
+ * Called when the Jetty HTTP exchange is completed, also passing along
the corresponding JBI exchange
+ *
+ * @param jbiExchange the JBI message exchange
+ * @param httpExchange the Jetty HTTP exchange
+ */
+ void onRequestComplete(MessageExchange jbiExchange,
HttpProviderEndpoint.Exchange httpExchange);
+}