ICallControlSignal interface

Represents a signal that is emitted from a Jabra device. These signals notify you that something has happened on the device.

This could be:

  • the user expressing an intent to do something by interacting with the device (e.g. pressing a button).
  • acknowledgement to a request (e.g. a SignalType.HOOK_SWITCH signal after your UC Client starts a call successfully).
  • an error condition (e.g. headset out of range from the base station).

Signature

export declare interface ICallControlSignal 

Remarks

Reacting to incoming signals is an advanced topic. Before implementing your solution, we urge you to check out the Integrator's guide.

Properties

Property Modifiers Type Description
type SignalType The type of signal that was emitted by the device.
value boolean The signal's reported value.
valueType ValueType Describes the type of value for this signal. Can either be relative or absolute.

Methods

Method Description
toString() Stringified version of the ICallControlSignal instance.