ITrackerStateListener InterfaceC# SDK for The Eye Tribe Tracker
Callback interface with methods associated to the state of the physical Tracker device. This interface should be implemented by classes that are to receive notifications of changes in the state of the Tracker and handle these accordingly. This could be a class in the 'View' layer telling the user that a Tracker has disconnected.

Namespace: TETCSharpClient
Assembly: TETCSharpClient (in TETCSharpClient.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface ITrackerStateListener

The ITrackerStateListener type exposes the following members.

Methods
  NameDescription
Public methodOnScreenStatesChanged
A notification call back indicating that main screen index has changed. This is only relevant for multiscreen setups. Implementing classes should update themselves accordingly if needed. Register for updates through GazeManager.AddTrackerStateListener().
Public methodOnTrackerStateChanged
A notification call back indicating that state of connected Tracker device has changed. Use this to detect if a tracker has been connected or disconnected. Implementing classes should update themselves accordingly if needed. Register for updates through GazeManager.AddTrackerStateListener().
Top
See Also