
org.bedework.calfacade.indexing.IndexerConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw-calendar-facade Show documentation
Show all versions of bw-calendar-facade Show documentation
Common calendar classes and code for bedework
The newest version!
/* ********************************************************************
Appropriate copyright notice
*/
package org.bedework.calfacade.indexing;
/**
* User: mike Date: 7/5/19 Time: 23:27
*/
public class IndexerConsumer {
final BwIndexer indexer;
public IndexerConsumer(final BwIndexer indexer) {
this.indexer = indexer;
}
public void consume(final Object o) {
indexer.indexEntity(0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy