Uses of Class
org.fourthline.cling.model.message.StreamRequestMessage

Packages that use StreamRequestMessage
org.fourthline.cling.mock   
org.fourthline.cling.model.message   
org.fourthline.cling.model.message.control   
org.fourthline.cling.model.message.gena   
org.fourthline.cling.model.profile   
org.fourthline.cling.protocol   
org.fourthline.cling.protocol.sync   
org.fourthline.cling.transport   
org.fourthline.cling.transport.impl   
org.fourthline.cling.transport.impl.apache   
org.fourthline.cling.transport.impl.jetty   
org.fourthline.cling.transport.spi   
 

Uses of StreamRequestMessage in org.fourthline.cling.mock
 

Methods in org.fourthline.cling.mock that return types with arguments of type StreamRequestMessage
 List<StreamRequestMessage> MockUpnpService.getSentStreamRequestMessages()
           
 

Methods in org.fourthline.cling.mock with parameters of type StreamRequestMessage
 StreamResponseMessage MockUpnpService.getStreamResponseMessage(StreamRequestMessage request)
           
 StreamResponseMessage MockUpnpService.MockRouter.send(StreamRequestMessage msg)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.model.message
 

Constructors in org.fourthline.cling.model.message with parameters of type StreamRequestMessage
StreamRequestMessage(StreamRequestMessage source)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.model.message.control
 

Subclasses of StreamRequestMessage in org.fourthline.cling.model.message.control
 class IncomingActionRequestMessage
           
 class OutgoingActionRequestMessage
           
 

Constructors in org.fourthline.cling.model.message.control with parameters of type StreamRequestMessage
IncomingActionRequestMessage(StreamRequestMessage source, LocalService service)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.model.message.gena
 

Subclasses of StreamRequestMessage in org.fourthline.cling.model.message.gena
 class IncomingEventRequestMessage
           
 class IncomingSubscribeRequestMessage
           
 class IncomingUnsubscribeRequestMessage
           
 class OutgoingEventRequestMessage
           
 class OutgoingRenewalRequestMessage
           
 class OutgoingSubscribeRequestMessage
           
 class OutgoingUnsubscribeRequestMessage
           
 

Constructors in org.fourthline.cling.model.message.gena with parameters of type StreamRequestMessage
IncomingEventRequestMessage(StreamRequestMessage source, RemoteService service)
           
IncomingSubscribeRequestMessage(StreamRequestMessage source, LocalService service)
           
IncomingUnsubscribeRequestMessage(StreamRequestMessage source, LocalService service)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.model.profile
 

Constructors in org.fourthline.cling.model.profile with parameters of type StreamRequestMessage
RemoteClientInfo(StreamRequestMessage requestMessage)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.protocol
 

Classes in org.fourthline.cling.protocol with type parameters of type StreamRequestMessage
 class ReceivingSync<IN extends StreamRequestMessage,OUT extends StreamResponseMessage>
          Supertype for all synchronously executing protocols, handling reception of UPnP messages and return a response.
 class SendingSync<IN extends StreamRequestMessage,OUT extends StreamResponseMessage>
          Supertype for all synchronously executing protocols, sending UPnP messages.
 

Methods in org.fourthline.cling.protocol with parameters of type StreamRequestMessage
protected  ReceivingAction ProtocolFactoryImpl.createReceivingAction(StreamRequestMessage message)
           
protected  ReceivingEvent ProtocolFactoryImpl.createReceivingEvent(StreamRequestMessage message)
           
protected  ReceivingRetrieval ProtocolFactoryImpl.createReceivingRetrieval(StreamRequestMessage message)
           
protected  ReceivingSubscribe ProtocolFactoryImpl.createReceivingSubscribe(StreamRequestMessage message)
           
 ReceivingSync ProtocolFactoryImpl.createReceivingSync(StreamRequestMessage message)
           
 ReceivingSync ProtocolFactory.createReceivingSync(StreamRequestMessage requestMessage)
          Creates a ReceivingRetrieval, ReceivingAction, ReceivingSubscribe, ReceivingUnsubscribe, or ReceivingEvent protocol.
protected  ReceivingUnsubscribe ProtocolFactoryImpl.createReceivingUnsubscribe(StreamRequestMessage message)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.protocol.sync
 

Constructors in org.fourthline.cling.protocol.sync with parameters of type StreamRequestMessage
ReceivingAction(UpnpService upnpService, StreamRequestMessage inputMessage)
           
ReceivingEvent(UpnpService upnpService, StreamRequestMessage inputMessage)
           
ReceivingRetrieval(UpnpService upnpService, StreamRequestMessage inputMessage)
           
ReceivingSubscribe(UpnpService upnpService, StreamRequestMessage inputMessage)
           
ReceivingUnsubscribe(UpnpService upnpService, StreamRequestMessage inputMessage)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.transport
 

Methods in org.fourthline.cling.transport with parameters of type StreamRequestMessage
 StreamResponseMessage SwitchableRouterImpl.send(StreamRequestMessage msg)
           
 StreamResponseMessage RouterImpl.send(StreamRequestMessage msg)
          Sends the TCP stream request with the StreamClient.
 StreamResponseMessage Router.send(StreamRequestMessage msg)
           Call this method to send a TCP (HTTP) stream message.
 

Uses of StreamRequestMessage in org.fourthline.cling.transport.impl
 

Methods in org.fourthline.cling.transport.impl that return StreamRequestMessage
protected  StreamRequestMessage AsyncServletUpnpStream.readRequestMessage()
           
 

Methods in org.fourthline.cling.transport.impl with parameters of type StreamRequestMessage
protected  void StreamClientImpl.applyRequestBody(HttpURLConnection urlConnection, StreamRequestMessage requestMessage)
           
protected  void StreamClientImpl.applyRequestProperties(HttpURLConnection urlConnection, StreamRequestMessage requestMessage)
           
 StreamResponseMessage StreamClientImpl.sendRequest(StreamRequestMessage requestMessage)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.transport.impl.apache
 

Methods in org.fourthline.cling.transport.impl.apache with parameters of type StreamRequestMessage
protected  org.apache.http.params.HttpParams StreamClientImpl.getRequestParams(StreamRequestMessage requestMessage)
           
 StreamResponseMessage StreamClientImpl.sendRequest(StreamRequestMessage requestMessage)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.transport.impl.jetty
 

Fields in org.fourthline.cling.transport.impl.jetty declared as StreamRequestMessage
protected  StreamRequestMessage StreamClientImpl.HttpContentExchange.requestMessage
           
 

Methods in org.fourthline.cling.transport.impl.jetty that return StreamRequestMessage
 StreamRequestMessage StreamClientImpl.HttpContentExchange.getRequestMessage()
           
 

Methods in org.fourthline.cling.transport.impl.jetty with parameters of type StreamRequestMessage
protected  StreamClientImpl.HttpContentExchange StreamClientImpl.createHttpContentExchange(StreamClientConfigurationImpl configuration, StreamRequestMessage requestMessage)
           
 StreamResponseMessage StreamClientImpl.sendRequest(StreamRequestMessage requestMessage)
           
 

Constructors in org.fourthline.cling.transport.impl.jetty with parameters of type StreamRequestMessage
StreamClientImpl.HttpContentExchange(StreamClientConfigurationImpl configuration, StreamRequestMessage requestMessage)
           
 

Uses of StreamRequestMessage in org.fourthline.cling.transport.spi
 

Methods in org.fourthline.cling.transport.spi with parameters of type StreamRequestMessage
 StreamResponseMessage UpnpStream.process(StreamRequestMessage requestMsg)
          Selects a UPnP protocol, runs it within the calling thread, returns the response.
 StreamResponseMessage StreamClient.sendRequest(StreamRequestMessage message)
          Sends the given request via TCP (HTTP) and returns the response.
 



Copyright © 2013 4th Line GmbH, Switzerland. All Rights Reserved.