Interface ISyncStateListener

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ISyncStateListener
Synchronized state listener used to listen to when the auto-building is complete and the properties state is synchronized with resources. This is typically used for Undo/Redo.
Author:
Christopher Mindus
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onSyncStateChanged(boolean isSynchronized)
    Called when the sync state changed.
  • Method Details

    • onSyncStateChanged

      void onSyncStateChanged(boolean isSynchronized)
      Called when the sync state changed. Note that this call is not guaranteed to be stable as it could change at almost any time.

      NOTE: This method is only called from the SWT thread!

      Parameters:
      isSynchronized - The synchronized state.