Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for publishSnapshotDiff (0.19 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotCollectingDiffListener.java

        private final List<FileSystemLocationSnapshot> removedSnapshots = new ArrayList<>();
        private final List<FileSystemLocationSnapshot> addedSnapshots = new ArrayList<>();
    
        public void publishSnapshotDiff(SnapshotHierarchy.SnapshotDiffListener snapshotDiffListener) {
            if (!removedSnapshots.isEmpty() || !addedSnapshots.isEmpty()) {
                snapshotDiffListener.changed(removedSnapshots, addedSnapshots);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top