Skip to content

BatchQueryImpl

This annotation is useful to indicate an implementation of BatchQuery

Usage

@BatchQueryImpl(
    // not mandatory
    description = """
        Informative description about the behavior of the implemented batch query"
    """ // suggested text block
)
public class SimpleBatchQuery implements EquinoxItemsHelper.BatchQuery<Simple> {

    ...
}
@BatchQueryImpl(
    // not mandatory
    description = """
        Informative description about the behavior of the implemented batch query"
    """ // suggested text block
)
class SimpleBatchQuery : EquinoxItemsHelper.BatchQuery<Simple> {

    ...
}