com.dell.doradus.logservice.ChunkIterable Maven / Gradle / Ivy
The newest version!
package com.dell.doradus.logservice;
import com.dell.doradus.service.db.Tenant;
public class ChunkIterable implements Iterable {
private Tenant m_tenant;
private String m_store;
private String m_partition;
public ChunkIterable(Tenant tenant, String store, String partition) {
m_tenant = tenant;
m_store = store;
m_partition = partition;
}
@Override public ChunkIterator iterator() {
return new ChunkIterator(m_tenant, m_store, m_partition);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy