Class HttpContentHandler
- java.lang.Object
-
- org.sblim.cimclient.internal.http.HttpContentHandler
-
- Direct Known Subclasses:
CIMIndicationHandler
public abstract class HttpContentHandler extends java.lang.ObjectClass HttpContentHandler is responsible for handling the content of an http connection.
-
-
Constructor Summary
Constructors Constructor Description HttpContentHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidclose()Closes the handlerabstract voidhandleContent(MessageReader pMessageReader, MessageWriter pMessageWriter, java.net.InetAddress pInetAddress, java.lang.String pLocalAddress)Handles the content of a given connection
-
-
-
Method Detail
-
handleContent
public abstract void handleContent(MessageReader pMessageReader, MessageWriter pMessageWriter, java.net.InetAddress pInetAddress, java.lang.String pLocalAddress) throws HttpException, java.io.IOException
Handles the content of a given connection- Parameters:
pMessageReader- The reader of the connectionpMessageWriter- The writer of the connectionpInetAddress- The remote network addresspLocalAddress- The local network address- Throws:
HttpExceptionjava.io.IOException
-
close
public abstract void close()
Closes the handler
-
-