Interface InteractivityChangedListener


  • public interface InteractivityChangedListener
    Listens for changes in the system-level state of interactivity. Cytoscape automatically switches the transformation subsystem to non-interactive mode when it detects it cannot process transformations in real time. The initial state is non-interactive.

    Module: filter-api

    To use this in your app, include the following dependency in your POM:

    <dependency>
        <groupId>org.cytoscape</groupId>
        <artifactId>filter-api</artifactId>
    </dependency>

    Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.
    • Method Detail

      • handleInteractivityChanged

        void handleInteractivityChanged​(boolean isInteractive)
        Called by the transformation subsystem to indicate the state of interactivity has changed.
        Parameters:
        isInteractive - true, if the system is running in interactive mode, or false, otherwise.