Interface ScreenSharingSession

All Superinterfaces:
TeamViewerSession

public interface ScreenSharingSession extends TeamViewerSession
This interface represents a running Screen Sharing aka Remote Control session.
  • Method Details

    • shareFiles

      void shareFiles(android.net.Uri... files)
      Share files with the remote supporter. This action is asynchronous.
      Must be called from the main thread.
      Parameters:
      files - An array of Uri representing a file or content that you want to share with the remote supporter.
    • addFileBoxCallback

      void addFileBoxCallback(FileBoxCallback callback)
      Register a FileBoxCallback instance that receives file box callbacks.
      Parameters:
      callback - The callback instance to register.
    • removeFileBoxCallback

      void removeFileBoxCallback(FileBoxCallback callback)
      Unregister a FileBoxCallback previously registered with addFileBoxCallback(). It will not receive any further callbacks.
      Parameters:
      callback - The callback instance to unregister.
    • getFileBoxItems

      List<FileBoxItem> getFileBoxItems()
      Returns:
      a list of all current items in the file box.