Uses of Class
org.apache.http.nio.protocol.MessageState
-
Packages that use MessageState Package Description org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication. -
-
Uses of MessageState in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as MessageState Modifier and Type Field Description private MessageState
HttpAsyncRequestExecutor.State. requestState
private MessageState
HttpAsyncService.State. requestState
private MessageState
HttpAsyncRequestExecutor.State. responseState
private MessageState
HttpAsyncService.State. responseState
Methods in org.apache.http.nio.protocol that return MessageState Modifier and Type Method Description MessageState
HttpAsyncRequestExecutor.State. getRequestState()
MessageState
HttpAsyncService.State. getRequestState()
MessageState
HttpAsyncRequestExecutor.State. getResponseState()
MessageState
HttpAsyncService.State. getResponseState()
static MessageState
MessageState. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MessageState[]
MessageState. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.http.nio.protocol with parameters of type MessageState Modifier and Type Method Description void
HttpAsyncRequestExecutor.State. setRequestState(MessageState state)
void
HttpAsyncService.State. setRequestState(MessageState state)
void
HttpAsyncRequestExecutor.State. setResponseState(MessageState state)
void
HttpAsyncService.State. setResponseState(MessageState state)
-