Unigine.Plugins.Syncker.Manager Class
The functionality described in this article is not available in the Community SDK edition.
You should upgrade to- Sim
SDK edition to use it.
You should upgrade to
Syncker plugin must be loaded.
This class represents Syncker manager interface used to initialize and destroy Syncker in master and slave applications.
Manager Class
Properties
bool IsDebugWindow#
A value indicating if the syncker's debug window is enabled.
set
Sets a value indicating if the Syncker's debug window is open.
Syncker Syncker#
The syncker interface.
bool IsSynckerInitialized#
A value indicating if the syncker (master or slave) was initialized.
Slave Slave#
The Slave interface.
bool IsSlaveInitialized#
A value indicating if the Slave was initialized.
Master Master#
The Master interface.
bool IsMasterInitialized#
A value indicating if the Master was initialized.
bool ArgAllowExtraSlaves#
Returns the value indicating if additional Slaves can be connected after starting the session set by the command line argument "-sync_allow_extra_slaves".
Available for Slave only.
int ArgUdpSlavePort#
Returns the UDP port used by the Slave set by the command line argument "-sync_slave_port".
Available for Slave only.
int ArgUdpPort#
The UDP port value set by the command line argument "-sync_port".
string ArgMasterAddress#
Returns the IP address of the Master set by the command line argument "-sync_master_address".
Available for Slave only.
string ArgMulticastAddress#
Returns the multicast address of the Master set by the command line argument "-sync_multicast_address".
string ArgBroadcastAddress#
Returns the broadcast address of the Master set by the command line argument "-sync_broadcast_address".
int ArgPeersCount#
Returns the number of peers set by the command line argument "-sync_count".
bool ArgIsAsyncMode#
Returns a value indicating if asynchronous mode is enabled (the command line argument "-sync_async" equals to 1).
Syncker.ADDRESSING_METHOD ArgAddressingMethod#
Returns the addressing mode value set by the command line argument "-sync_method".
bool ArgIsMaster#
A value indicating if the command line argument "-sync_master" equals to 1.
Members
Syncker.ADDRESSING_METHOD GetArgAddressingMethod ( ) #
Returns the addressing mode value set by the command line argument "-sync_method".Return value
Current addressing mode: one of the ADDRESSING_METHOD enum values.bool GetArgIsAsyncMode ( ) #
Returns a value indicating if asynchronous mode is enabled (the command line argument "-sync_async" equals to 1).Return value
true if asynchronous mode is enabled; otherwise, false.int GetArgPeersCount ( ) #
Returns the number of peers set by the command line argument "-sync_count".Return value
Number of peers. The default value is 1. The number of peers includes all Slaves in the network + the Master.string GetArgBroadcastAddress ( ) #
Returns the broadcast address of the Master set by the command line argument "-sync_broadcast_address".Return value
Broadcast address of the Master.string GetArgMulticastAddress ( ) #
Returns the multicast address of the Master set by the command line argument "-sync_multicast_address".Return value
Multicast address of the Master. The default value is 239.0.0.1string GetArgMasterAddress ( ) #
Returns the IP address of the Master set by the command line argument "-sync_master_address".Available for Slave only.
Return value
IP address of the Master.int GetArgUdpSlavePort ( ) #
Returns the UDP port used by the Slave set by the command line argument "-sync_slave_port".Available for Slave only.
Return value
UDP port used by the Slave. The default value is 0 (any unused port available).bool GetArgAllowExtraSlaves ( ) #
Returns the value indicating if additional Slaves can be connected after starting the session set by the command line argument "-sync_allow_extra_slaves".Available for Slave only.
Return value
true if additional Slaves can be connected after starting the session; otherwise, false.Master InitMaster ( ) #
Initializes the Syncker as the Master application using values specified via the command-line arguments.Return value
Master InitMasterBroadcast ( bool async_mode, int peers_count, string broadcast_address, ushort udp_port ) #
Initializes the Syncker as the Master application with the broadcast mode enabled.Slaves must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- int peers_count - Total number of Syncker hosts in the network (including the Master itself). Similar to specifying the -sync_count command-line argument.
- string broadcast_address - Broadcast address to be used. Similar to specifying the -sync_broadcast_address command-line argument.
- ushort udp_port - Broadcast address to be used. Similar to specifying the -sync_broadcast_address command-line argument.
Return value
Master InitMasterMulticast ( bool async_mode, int peers_count, string multicast_address, ushort udp_port ) #
Initializes the Syncker as the Master application with the multicast mode enabled.Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- int peers_count - Total number of Syncker hosts in the network (including the Master itself). Similar to specifying the -sync_count command-line argument.
- string multicast_address - Multicast address to be used. Similar to specifying the -sync_multicast_address command-line argument.
- ushort udp_port - UDP port to be used. Similar to specifying the -sync_port command-line argument.
Return value
Master InitMasterUnicast ( bool async_mode, int peers_count, ushort udp_port ) #
Initializes the Syncker as the Master application with the broadcast mode enabled.Slaves must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- int peers_count - Total number of Syncker hosts in the network (including the Master itself). Similar to specifying the -sync_count command-line argument.
- ushort udp_port - UDP port to be used. Similar to specifying the -sync_port command-line argument.
Return value
Slave InitSlave ( ) #
Initializes the Syncker as the Slave application using values specified via the command-line arguments.Return value
void DestroySyncker ( ) #
Performs shutdown and destroys the Syncker.Called automatically, when the plugin is unloaded.
Slave InitSlaveBroadcast ( bool async_mode, ushort udp_port ) #
Initializes the Syncker as the Slave application with the broadcast mode enabled. Master's IP address will be detected automatically.Master must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- ushort udp_port - UDP port to be used. Similar to specifying the -sync_port command-line argument.
Return value
Slave interface instance.Slave InitSlaveBroadcast ( bool async_mode, string master_address, ushort udp_port ) #
Initializes the Syncker as the Slave application with the specified parameters and the broadcast mode enabled. Master's IP address is specified explicitly.Master must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- string master_address - Master IP address to be used. Similar to specifying the -sync_master_address command-line argument.
- ushort udp_port - UDP port to be used. Similar to specifying the -sync_port command-line argument.
Return value
Slave interface instance.Slave InitSlaveMulticast ( bool async_mode, string multicast_address, ushort udp_port ) #
Initializes the Syncker as the Slave application with the specified parameters and the multicast mode enabled. Master's IP address will be detected automatically.Master must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- string multicast_address - Multicast address to be used. Similar to specifying the -sync_multicast_address command-line argument.
- ushort udp_port - UDP port to be used. Similar to specifying the -sync_port command-line argument.
Return value
Slave interface instance.Slave InitSlaveMulticast ( bool async_mode, string master_address, string multicast_address, ushort udp_port ) #
Initializes the Syncker as the Slave application with the specified parameters and the multicast mode enabled. Master's IP address is specified explicitly.Master must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- string master_address - Master IP address to be used. Similar to specifying the -sync_master_address command-line argument.
- string multicast_address - Multicast address to be used. Similar to specifying the -sync_multicast_address command-line argument.
- ushort udp_port - UDP port to be used. Similar to specifying the -sync_port command-line argument.
Return value
Slave interface instance.Slave InitSlaveUnicast ( bool async_mode, ushort master_udp_port, ushort slave_udp_port = 0 ) #
Initializes the Syncker as the Slave application with the specified parameters and the unicast mode enabled. Master's IP address will be detected automatically.Master must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- ushort master_udp_port - UDP port to be used by the Master.
- ushort slave_udp_port - UDP port to be used by the Slave. Similar to specifying the -sync_slave_port command-line argument.
Return value
Slave interface instance.Slave InitSlaveUnicast ( bool async_mode, string master_address, ushort master_udp_port, ushort slave_udp_port = 0 ) #
Initializes the Syncker as the Slave application with the specified parameters and the unicast mode enabled. Master's IP address is specified explicitly.Master must be initialized with broadcast mode enabled as well.
Arguments
- bool async_mode - Async mode flag. Set true to use asynchronous mode; false - to use synchronous mode.Similar to specifying the -sync_async command-line argument.Slaves must use the same synchronization mode as the Master.
- string master_address - Master IP address to be used. Similar to specifying the -sync_master_address command-line argument.
- ushort master_udp_port - UDP port to be used by the Master.
- ushort slave_udp_port - UDP port to be used by the Slave. Similar to specifying the -sync_slave_port command-line argument.
Return value
Slave interface instance.Syncker InitSyncker ( ) #
Initializes the Syncker as Master or Slave application depending on the values specified via the command-line arguments.Return value
Syncker interface instance. It is the base class for Master and Slave.Last update:
2020-07-31
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)