Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2008-07-18 17:43:25 +0000
committerEike Stepper2008-07-18 17:43:25 +0000
commitad66ca460829cc4ba921cad130d7135f6a3acfe2 (patch)
tree3474c7d4941d3c6c2d94db199b6ff3c134168fb6 /plugins/org.eclipse.net4j.http/src/org/eclipse
parenteb297ff31ef2bb82a3657adefe57791b6a23ee91 (diff)
downloadcdo-ad66ca460829cc4ba921cad130d7135f6a3acfe2.tar.gz
cdo-ad66ca460829cc4ba921cad130d7135f6a3acfe2.tar.xz
cdo-ad66ca460829cc4ba921cad130d7135f6a3acfe2.zip
[241121] Develop POP Process Tooling
https://bugs.eclipse.org/bugs/show_bug.cgi?id=241121
Diffstat (limited to 'plugins/org.eclipse.net4j.http/src/org/eclipse')
-rw-r--r--plugins/org.eclipse.net4j.http/src/org/eclipse/net4j/internal/http/HTTPClientConnector.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/org.eclipse.net4j.http/src/org/eclipse/net4j/internal/http/HTTPClientConnector.java b/plugins/org.eclipse.net4j.http/src/org/eclipse/net4j/internal/http/HTTPClientConnector.java
index a67a8cf815..0ea3f1c9e4 100644
--- a/plugins/org.eclipse.net4j.http/src/org/eclipse/net4j/internal/http/HTTPClientConnector.java
+++ b/plugins/org.eclipse.net4j.http/src/org/eclipse/net4j/internal/http/HTTPClientConnector.java
@@ -15,8 +15,8 @@ import org.eclipse.net4j.connector.ConnectorLocation;
import org.eclipse.net4j.http.internal.common.HTTPConnector;
import org.eclipse.net4j.util.io.ExtendedDataInputStream;
import org.eclipse.net4j.util.io.ExtendedDataOutputStream;
-import org.eclipse.net4j.util.io.IOAdapter;
-import org.eclipse.net4j.util.io.IOHandler;
+import org.eclipse.net4j.util.io.ExtendedIOAdapter;
+import org.eclipse.net4j.util.io.ExtendedIOHandler;
import org.eclipse.net4j.util.io.IORuntimeException;
import org.eclipse.net4j.util.lifecycle.Worker;
@@ -147,7 +147,7 @@ public class HTTPClientConnector extends HTTPConnector
private void doConnect() throws IOException
{
- request(new IOHandler()
+ request(new ExtendedIOHandler()
{
public void handleOut(ExtendedDataOutputStream out) throws IOException
{
@@ -168,7 +168,7 @@ public class HTTPClientConnector extends HTTPConnector
private void doDisconnect() throws IOException
{
- request(new IOAdapter()
+ request(new ExtendedIOAdapter()
{
@Override
public void handleOut(ExtendedDataOutputStream out) throws IOException
@@ -179,7 +179,7 @@ public class HTTPClientConnector extends HTTPConnector
});
}
- private void request(IOHandler handler) throws IOException, HttpException
+ private void request(ExtendedIOHandler handler) throws IOException, HttpException
{
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ExtendedDataOutputStream out = new ExtendedDataOutputStream(baos);
@@ -222,7 +222,7 @@ public class HTTPClientConnector extends HTTPConnector
try
{
final boolean moreOperations[] = { false };
- request(new IOHandler()
+ request(new ExtendedIOHandler()
{
public void handleOut(ExtendedDataOutputStream out) throws IOException
{

Back to the top