Interface ILaunchConfigurationDefaults


  • public interface ILaunchConfigurationDefaults
    Launch configuration default values.
    Restriction:
    This interface is not intended to be extended by clients.
    Restriction:
    This interface is not intended to be implemented by clients.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int CALL_DELAY
      Default server call delay emulation in seconds.
      static int DATA_RECEIVING_DELAY
      Default server data receiving delay emulation in seconds per 1 KB.
      static int DATA_SENDING_DELAY
      Default server data sending delay emulation in seconds per 1 KB.
    • Field Detail

      • CALL_DELAY

        static final int CALL_DELAY
        Default server call delay emulation in seconds.

        Value is int-represented (because launch configurations can store only int value). To get actual double value need divide by 100.

        See Also:
        Constant Field Values
      • DATA_SENDING_DELAY

        static final int DATA_SENDING_DELAY
        Default server data sending delay emulation in seconds per 1 KB.

        Value is int-represented (because launch configurations can store only int value). To get actual double value need divide by 100.

        See Also:
        Constant Field Values
      • DATA_RECEIVING_DELAY

        static final int DATA_RECEIVING_DELAY
        Default server data receiving delay emulation in seconds per 1 KB.

        Value is int-represented (because launch configurations can store only int value). To get actual double value need divide by 100.

        See Also:
        Constant Field Values