Uses of Class
org.apache.cassandra.db.view.View
-
Packages that use View Package Description org.apache.cassandra.db.view -
-
Uses of View in org.apache.cassandra.db.view
Methods in org.apache.cassandra.db.view that return View Modifier and Type Method Description View
ViewManager. getByName(java.lang.String name)
Methods in org.apache.cassandra.db.view that return types with arguments of type View Modifier and Type Method Description java.util.Iterator<View>
TableViews. iterator()
java.util.Collection<View>
TableViews. updatedViews(PartitionUpdate updates)
Return the views that are potentially updated by the provided updates.Methods in org.apache.cassandra.db.view with parameters of type View Modifier and Type Method Description boolean
TableViews. add(View view)
Method parameters in org.apache.cassandra.db.view with type arguments of type View Modifier and Type Method Description java.util.Iterator<java.util.Collection<Mutation>>
TableViews. generateViewUpdates(java.util.Collection<View> views, UnfilteredRowIterator updates, UnfilteredRowIterator existings, int nowInSec, boolean separateUpdates)
Given some updates on the base table of this object and the existing values for the rows affected by that update, generates the mutation to be applied to the provided views.Constructors in org.apache.cassandra.db.view with parameters of type View Constructor Description ViewBuilderTask(ColumnFamilyStore baseCfs, View view, Range<Token> range, Token lastToken, long keysBuilt)
ViewUpdateGenerator(View view, DecoratedKey basePartitionKey, int nowInSec)
Creates a newViewUpdateBuilder
.
-