Click or drag to resize

RtpsDiscovery Class

Represent a RTPS discovery.
Inheritance Hierarchy

Namespace:  OpenDDSharp.OpenDDS.RTPS
Assembly:  OpenDDSharp (in OpenDDSharp.dll) Version: 0.5.0.0
Syntax
public class RtpsDiscovery : Discovery

The RtpsDiscovery type exposes the following members.

Constructors
  NameDescription
Public methodRtpsDiscovery
Creates a new instance of RtpsDiscovery.
Top
Properties
  NameDescription
Public propertyD0
An integer value representing the Offset Zero. The default value is 0.
Public propertyD1
An integer value representing the Offset One. The default value is 10.
Public propertyDefaultMulticastGroup
A network address specifying the multicast group to be used for SPDP discovery. The default value is 239.255.0.1.
Public propertyDG
An integer value representing the Domain Gain. The default value is 250.
Public propertyDX
An integer value representing the Offset X. The default value is 2.
Public propertyGuidInterface
Specifes the network interface to use when determining which local MAC address should appear in a GUID generated by this node.
Public propertyKey
The discovery unique key
(Inherited from Discovery.)
Public propertyMulticastInterface
Specifes the network interface to be used by this discovery instance. This uses a platform-specifc format that identifes the network interface.
Public propertyPB
Port Base number. The default value is 7400.
Public propertyPG
An integer value representing the Port Gain. The default value is 2.
Public propertyResendPeriod
The number of seconds that a process waits between the announcement of participants. The default value is 30 seconds.
Public propertySedpLocalAddress
Confgure the transport instance created and used by SEDP to bind to the specifed local address and port.
Public propertySedpMulticast
A boolean value that determines whether Multicast is used for the SEDP trafic. When set to true, Multicast is used. When set to false Unicast for SEDP is used. The default value is true.
Public propertySpdpLocalAddress
Address of a local interface (no port), which will be used by SPDP to bind to that specifc interface.
Public propertySpdpSendAddrs
A list (comma or whitespace separated) of host:port pairs used as destinations for SPDP content. This can be a combination of Unicast and Multicast addresses.
Public propertyTtl
The value of the time-to-live (ttl) field of multicast datagrams sent as part of discovery. This value specifes the number of hops the datagram will traverse before being discarded by the network. The default value of 1 means that all data is restricted to the local network subnet.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

The RTPS specifcation splits up the discovery protocol into two independent protocols:

1. Participant Discovery Protocol

2. Endpoint Discovery Protocol

A Participant Discovery Protocol (PDP) specifes how Participants discover each other in the network. Once two Participants have discovered each other, they exchange information on the Endpoints they contain using an Endpoint Discovery Protocol (EDP). Apart from this causality relationship, both protocols can be considered independent.

See Also