Show / Hide Table of Contents

Interface ISessionDataListener

Each client that uses SessionManager to create session instances should implement this interface in order to get notifications about changes in the internal data of the session.

Namespace: AppDrillCore.Session
Assembly: AppDrillCore.dll
Syntax
public interface ISessionDataListener

Methods

SessionDataChanged(ISessionDataListener.SessionDataChangedEventType)

When this callback is called, it means that one of two things happened:

  • Global: the internal data of the sessions has changed. Call one of the GetXXX functions to get the latest data.
  • SingleTest: a test has been updated with a new result. Call RefreshSymptomData(String) to retrieve the latest data from the server, then possibly call one of the GetXXX functions to get the latest data.
Declaration
void SessionDataChanged(ISessionDataListener.SessionDataChangedEventType eventType)
Parameters
Type Name Description
ISessionDataListener.SessionDataChangedEventType eventType
In This Article
Back to top Generated by DocFX