001package io.ebeanservice.docstore.api; 002 003import io.ebean.docstore.DocUpdateContext; 004 005/** 006 * The doc store specific context/transaction used to collect updates to send to the document store. 007 * <p> 008 * Doc store specific implementations gather changes and bulk update the document store. 009 * </p> 010 */ 011public interface DocStoreUpdateContext extends DocUpdateContext { 012 013}