Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNotificationOperationProgressTimestamp (0.34 sec)

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

         */
        Object getNotificationOperationId();
    
        /**
         * The time that the event occurred.
         *
         * @since 4.4
         */
        long getNotificationOperationProgressTimestamp();
    
        /**
         * A structured object providing details about the operation that was performed.
         */
        Object getNotificationOperationProgressDetails();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            }
    
            @Override
            public Object getNotificationOperationId() {
                return id;
            }
    
            @Override
            public long getNotificationOperationProgressTimestamp() {
                return timestamp;
            }
    
            @Override
            public Object getNotificationOperationProgressDetails() {
                return details;
            }
    
        }
    
    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