com.basho.riak.client.raw.http.IndexSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riak-client Show documentation
Show all versions of riak-client Show documentation
HttpClient-based client for Riak
/*
* Copyright 2013 Basho Technologies Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.basho.riak.client.raw.http;
import com.basho.riak.client.IndexEntry;
import com.basho.riak.client.http.response.IndexResponseV2;
import com.basho.riak.client.query.StreamingOperation;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
*
* @author Brian Roach
*/
public class IndexSource implements StreamingOperation
{
private final List entryList;
private final String continuation;
private final Iterator iterator;
public IndexSource(IndexResponseV2 indexResponse)
{
entryList = new ArrayList();
for (com.basho.riak.client.http.response.IndexEntry entry : indexResponse.getEntries())
{
entryList.add(new IndexEntry(entry.getIndexValue(), entry.getObjectKey()));
}
continuation = indexResponse.getContinuation();
iterator = entryList.iterator();
}
public List getAll()
{
return entryList;
}
public void cancel()
{
// No op because this isn't really streaming.
}
public boolean hasContinuation()
{
return continuation != null;
}
public String getContinuation()
{
return continuation;
}
public Iterator iterator()
{
return entryList.iterator();
}
public boolean hasNext()
{
return iterator.hasNext();
}
public IndexEntry next()
{
return iterator.next();
}
public void remove()
{
throw new UnsupportedOperationException("Not supported");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy