Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RequestResult (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java

     * @param error Any error that occurred during processing; null if the request was successful
     * @since 4.0.0
     */
    @Experimental
    public record RequestResult<REQ extends Request<?>, REP extends Result<REQ>>(
            /**
             * The original request that was processed
             */
            REQ request,
    
            /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/cache/BatchRequestException.java

     * callers to determine which specific requests failed and why.
     *
     * @since 4.0.0
     */
    @Experimental
    public class BatchRequestException extends RuntimeException {
    
        private final List<RequestResult<?, ?>> results;
    
        /**
         * Constructs a new BatchRequestException with the specified message and results.
         *
         * @param <REQ> The type of the request
         * @param <REP> The type of the response
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/cache/package-info.java

     *     return computedResult;
     * });
     * </pre>
     * <p>
     * The package also provides support for batch operations through {@link org.apache.maven.api.cache.BatchRequestException}
     * and {@link org.apache.maven.api.cache.RequestResult} which help manage multiple requests and their results.
     *
     * @since 4.0.0
     */
    @Experimental
    package org.apache.maven.api.cache;
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top