Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNotificationOperationId (0.22 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

        /**
         * The operation ID.
         *
         * Must be logically equal to a {@link BuildOperationStartedNotification#getNotificationOperationId()} value
         * of a previously emitted started notification.
         */
        Object getNotificationOperationId();
    
        /**
         * The ID of the parent of this notification.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationProgressNotification.java

        /**
         * The operation ID.
         *
         * Must be logically equal to a {@link BuildOperationStartedNotification#getNotificationOperationId()} value
         * of a previously emitted started notification.
         */
        Object getNotificationOperationId();
    
        /**
         * The time that the event occurred.
         *
         * @since 4.4
         */
        long getNotificationOperationProgressTimestamp();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationStartedNotification.java

     *
     * @since 4.0
     */
    @UsedByScanPlugin
    public interface BuildOperationStartedNotification {
    
        /**
         * A unique, opaque, value identifying this operation.
         */
        Object getNotificationOperationId();
    
        /**
         * The ID of the parent of this notification.
         *
         * Note: this is the ID of the nearest parent operation that also resulted in a notification.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            }
    
            @Override
            public long getNotificationOperationStartedTimestamp() {
                return timestamp;
            }
    
            @Override
            public Object getNotificationOperationId() {
                return id;
            }
    
            @Override
            public Object getNotificationOperationParentId() {
                return parentId;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top