complexType "noProtocolTcpConnectorType"
Namespace:
Content:
complex, 15 attributes, attr. wildcard, 6 elements
Defined:
globally in mule-tcp.xsd; see XML source
Includes:
definitions of 11 attributes
Used:
Content Model Diagram
XML Representation Summary
<...
   
 = 
(xsd:string | xsd:NMTOKEN)
 = 
(xsd:string | xsd:boolean) : "false"
 = 
(xsd:string | xsd:boolean) : "true"
 = 
xsd:string
 = 
(xsd:string | xsd:int)
 = 
(xsd:string | xsd:int)
 = 
(xsd:string | xsd:int)
 = 
(xsd:string | xsd:boolean)
 = 
(xsd:string | xsd:boolean)
 = 
(xsd:string | xsd:int)
 = 
(xsd:string | xsd:int)
 = 
(xsd:string | xsd:int)
 = 
(xsd:string | xsd:boolean)
 = 
(xsd:string | xsd:boolean)
 = 
(xsd:string | xsd:int)
    {any attribute with non-schema namespace}
    >
   
Content: 
mule:annotations?, spring:property*, mule:receiver-threading-profile?, mule:dispatcher-threading-profile?, mule:abstract-reconnection-strategy?, mule:service-overrides?
</...>
Content Model Elements (6):
mule:abstract-reconnection-strategy, mule:annotations, mule:dispatcher-threading-profile, mule:receiver-threading-profile, mule:service-overrides, spring:property
Known Direct Subtypes (2):
httpConnectorType, tcpConnectorType
Known Indirect Subtypes (4):
httpPollingConnectorType, httpsConnectorType, httpsPollingConnectorType, pollingTcpConnectorType
All Direct / Indirect Based Elements (8):
connector, connector, connector, connector, connector, polling-connector, polling-connector, polling-connector
Known Usage Locations
Type Definition Detail
Type Derivation Tree
mule:annotatedType (extension)
      mule:connectorType (extension)
          noProtocolTcpConnectorType
XML Source (w/o annotations (11); see within schema source)
<xsd:complexType name="noProtocolTcpConnectorType">
<xsd:complexContent>
<xsd:extension base="mule:connectorType">
<xsd:attribute name="sendBufferSize" type="mule:substitutableInt"/>
<xsd:attribute name="receiveBufferSize" type="mule:substitutableInt"/>
<xsd:attribute name="receiveBacklog" type="mule:substitutableInt"/>
<xsd:attribute name="sendTcpNoDelay" type="mule:substitutableBoolean"/>
<xsd:attribute name="reuseAddress" type="mule:substitutableBoolean"/>
<xsd:attribute name="clientSoTimeout" type="mule:substitutableInt"/>
<xsd:attribute name="serverSoTimeout" type="mule:substitutableInt"/>
<xsd:attribute name="socketSoLinger" type="mule:substitutableInt"/>
<xsd:attribute name="keepSendSocketOpen" type="mule:substitutableBoolean"/>
<xsd:attribute name="keepAlive" type="mule:substitutableBoolean"/>
<xsd:attribute name="socketMaxWait" type="mule:substitutableInt"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
Attribute Detail (all declarations; defined within this component only; 11/16)
clientSoTimeout
Type:
Use:
optional
This sets the SO_TIMEOUT value when the socket is used as a client. Reading from the socket will block for up to this long (in milliseconds) before the read fails. A value of 0 (the default) causes the read to wait indefinitely (if no data arrives).
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="clientSoTimeout" type="mule:substitutableInt"/>

keepAlive
Type:
Use:
optional
Enables SO_KEEPALIVE behavior on open sockets. This automatically checks socket connections that are open but unused for long periods and closes them if the connection becomes unavailable. This is a property on the socket itself and is used by a server socket to control whether connections to the server are kept alive before they are recycled.
Attribute Value
xsd:string | xsd:boolean
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="keepAlive" type="mule:substitutableBoolean"/>

keepSendSocketOpen
Type:
Use:
optional
If set, the socket is not closed after sending a message. This attribute only applies when sending data over a socket (Client).
Attribute Value
xsd:string | xsd:boolean
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="keepSendSocketOpen" type="mule:substitutableBoolean"/>

receiveBacklog
Type:
Use:
optional
The maximum queue length for incoming connections.
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="receiveBacklog" type="mule:substitutableInt"/>

receiveBufferSize
Type:
Use:
optional
The size of the buffer (in bytes) used when receiving data, set on the socket itself.
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="receiveBufferSize" type="mule:substitutableInt"/>

reuseAddress
Type:
Use:
optional
If set (the default), SO_REUSEADDRESS is set on server sockets before binding. This helps reduce "address already in use" errors when a socket is re-used.
Attribute Value
xsd:string | xsd:boolean
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="reuseAddress" type="mule:substitutableBoolean"/>

sendBufferSize
Type:
Use:
optional
The size of the buffer (in bytes) used when sending data, set on the socket itself.
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="sendBufferSize" type="mule:substitutableInt"/>

sendTcpNoDelay
Type:
Use:
optional
If set, transmitted data is not collected together for greater efficiency but sent immediately.
Attribute Value
xsd:string | xsd:boolean
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="sendTcpNoDelay" type="mule:substitutableBoolean"/>

serverSoTimeout
Type:
Use:
optional
This sets the SO_TIMEOUT value when the socket is used as a server. Reading from the socket will block for up to this long (in milliseconds) before the read fails. A value of 0 (the default) causes the read to wait indefinitely (if no data arrives).
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="serverSoTimeout" type="mule:substitutableInt"/>

socketMaxWait
Type:
Use:
optional
Sets the maximum amount of time (in milliseconds) the socket pool should block waiting for a socket before throwing an exception. When less than or equal to 0 it may block indefinitely (the default).
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="socketMaxWait" type="mule:substitutableInt"/>

socketSoLinger
Type:
Use:
optional
This sets the SO_LINGER value. This is related to how long (in milliseconds) the socket will take to close so that any remaining data is transmitted correctly.
Attribute Value
xsd:string | xsd:int
XML Source (w/o annotations (1); see within schema source)
<xsd:attribute name="socketSoLinger" type="mule:substitutableInt"/>

XML schema documentation generated with DocFlex/XML RE 1.8.5 using DocFlex/XML XSDDoc 2.5.0 template set. All content model diagrams generated by Altova XMLSpy via DocFlex/XML XMLSpy Integration.