Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help


search: keywords: ['java', 'ofunction', 'setidempotent']

OFunction - setIdempotent()

Sets whether the function is idempotent.

Function Idempotence

OrientDB differentiates between idempotent queries and non-idempotent commands. That is, queries that always return the same results versus commands that write to the database. In functions this is indicated by a simple boolean value set on the OFunction instance. Using this method you can set idempotence for the function. To determine whether a function is set as idempotent, see the isIdempotent() method.

Syntax

OFunction OFunction().setIdempotent(boolean idempotence)
ArgumentTypeDescription
idemptencebooleanIndicates whether the function is idempotent

Return Type

This method returns the updated OFunction instance, which you may find useful when stringing several operations together.