You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sa...@apache.org on 2011/05/11 16:10:26 UTC

svn commit: r1101884 - /axis/axis2/java/core/branches/1_6/modules/transport/local/src/org/apache/axis2/transport/local/NonBlockingLocalTransportSender.java

Author: sagara
Date: Wed May 11 14:10:25 2011
New Revision: 1101884

URL: http://svn.apache.org/viewvc?rev=1101884&view=rev
Log:
add NonBlockingLocalTransportSender

Added:
    axis/axis2/java/core/branches/1_6/modules/transport/local/src/org/apache/axis2/transport/local/NonBlockingLocalTransportSender.java

Added: axis/axis2/java/core/branches/1_6/modules/transport/local/src/org/apache/axis2/transport/local/NonBlockingLocalTransportSender.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/transport/local/src/org/apache/axis2/transport/local/NonBlockingLocalTransportSender.java?rev=1101884&view=auto
==============================================================================
--- axis/axis2/java/core/branches/1_6/modules/transport/local/src/org/apache/axis2/transport/local/NonBlockingLocalTransportSender.java (added)
+++ axis/axis2/java/core/branches/1_6/modules/transport/local/src/org/apache/axis2/transport/local/NonBlockingLocalTransportSender.java Wed May 11 14:10:25 2011
@@ -0,0 +1,28 @@
+/*
+ * 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.axis2.transport.local;
+
+public class NonBlockingLocalTransportSender extends LocalTransportSender {
+
+    protected boolean isNonBlocking() {
+        return true;
+    }
+
+}