blob: e01d466fcbf977ccb6ab217edb1194ba00bb7f0d [file] [log] [blame]
alshabibab984662014-12-04 18:56:18 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.service;
Madan Jampani12390c12014-11-12 00:35:56 -080017
Madan Jampani12390c12014-11-12 00:35:56 -080018import java.util.List;
19
Madan Jampanif5d263b2014-11-13 10:04:40 -080020import com.google.common.base.MoreObjects;
Madan Jampani7aad2332014-11-12 01:57:07 -080021import com.google.common.collect.ImmutableList;
22
Madan Jampani23af4fc2014-11-12 00:54:18 -080023/**
24 * Result of a batch read operation.
25 */
Madan Jampani12390c12014-11-12 00:35:56 -080026public class BatchReadResult {
Madan Jampani23af4fc2014-11-12 00:54:18 -080027
28 private final List<ReadResult> readResults;
29
30 public BatchReadResult(List<ReadResult> readResults) {
Madan Jampani7aad2332014-11-12 01:57:07 -080031 this.readResults = ImmutableList.copyOf(readResults);
Madan Jampani23af4fc2014-11-12 00:54:18 -080032 }
33
34 /**
35 * Returns the results as a list.
36 * @return list of results
37 */
38 public List<ReadResult> getAsList() {
39 return readResults;
40 }
41
42 /**
43 * Returns the batch size.
44 * @return batch size
45 */
46 public int batchSize() {
47 return readResults.size();
48 }
Madan Jampanif5d263b2014-11-13 10:04:40 -080049
50 @Override
51 public String toString() {
52 return MoreObjects.toStringHelper(getClass())
53 .add("readResults", readResults)
54 .toString();
55 }
Madan Jampani23af4fc2014-11-12 00:54:18 -080056}