This class creates unsecure multicastType.DATAGRAM
server configurations.
The security desire is
SecurityDesire.NOT_SECURE
.
These configurations are immutable once built, and so
the builder allows them to be created (and modified) up until they are built.
Inheritance Hierarchy
org.opendof.core.oalDOFServerConfigBuilderUnsecureDOFServerConfigBuilderUnsecureMulticast
org.opendof.core.oalDOFServerConfigBuilderUnsecureMulticast
Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax
C#
public sealed class BuilderUnsecureMulticast : DOFServerConfigBuilderUnsecure<DOFServerConfigBuilderUnsecureMulticast>
The DOFServerConfigBuilderUnsecureMulticast type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | DOFServerConfigBuilderUnsecureMulticast | Create a simple, unsecure server on the target address. |
Methods
Name | Description | |
---|---|---|
![]() | build | Build a configuration based on the current state of the builder. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | createServer(DOF) |
This is a convenience method for creating the server with the implied
Config
.
This is the server only. This server will not source requests to other nodes. For that, see
BuilderUnsecureMulticast
.
The unicastAddress must have been set explicitly with
setUnicastAddress(DOFAddress)
.
|
![]() | createServer(DOF, DOFAddress) |
This is a convenience method for creating the server with the implied
Config
.
This is the server only. This server will not source requests to other nodes. For that, see
BuilderUnsecureMulticast
.
|
![]() | Equals | (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | setAddress | Set this server's listening address. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setAuditorListener | Set this server's audit listener. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setBridge | Set the bridge of the server. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setConnectionLimit | Set the maximum number of inbound connections that the server can support.
(Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setMaxReceiveSilence | Set this server's max receive silence. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setMaxSendSilence | Set this server's max send silence. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setName | Set this server's name used for logging purposes. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setProtocolNegotiator | Set this server's protocol negotiator. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setReceiveFilter | Set the receive filter of the server. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setSendFilter | Set the send filter of the server. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setTransportConfig | Set this server's transport configuration. (Inherited from DOFServerConfigBuilderUnsecureT.) |
![]() | setUnicastAddress |
Set the unicastAddress to be used by
createServer(DOF)
. This is a convenience so that you don't have to keep the address
around until createServer is called. The default is null, so if this method is not called, createServer(DOF) will throw
IllegalArgumentException.
This method signature is only useful if you plan on calling it much later than the constructor and don't want to pass around the ucastAddress
parameter you will need to call
createServer(DOF, DOFAddress)
. If that is not your use case, then just call
creates(DOF, DOFAddress).
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
See Also