summaryrefslogtreecommitdiffstats
path: root/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java
blob: 28df8a7f5a33f8394980985876ceaccf24525c80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi.result;

/**
 * Result class for CreateIterator requests.
 */
public class CreateIteratorResult extends Result {
    long iteratorId = 0;

    /**
     * Creates a result with an error.
     *
     * @param type The type of error
     * @param message A human-readable error message to further detail the error.
     */
    public CreateIteratorResult(Result.ErrorType type, String message) {
        super(type, message);
    }

    /**
     * Creates a successful result, containing a unique identifier for this iterator
     * (must be created and maintained by the provider).
     *
     * @param iteratorId The iterator ID to use for this iterator.
     */
    public CreateIteratorResult(long iteratorId) {
        this.iteratorId = iteratorId;
    }

    public long getIteratorId() {
        return iteratorId;
    }
}