GigaSpaces XAP.NET Documentation
Change<(Of <(T>)>) Method (template, changeSet, tx, timeout, modifiers)
Class LibraryGigaSpaces.CoreISpaceProxyChange<(Of <(T>)>)(T, ChangeSet, ITransaction, Int64, ChangeModifiers)
Changes an existing object in space, returning a change result which provides details of the operation affect. The change operation is designed for performance optimization, By allowing to change an existing object unlike with regular updating write operation which usually requires reading the object before applying to update to it. As part of the optimization, when the operation is replicated, on a best effort it will try to replicate only the required data which is needed to apply the changes on the entry in the replicated target. Modifiers can be used to specify behavior of the change operation, by default uses the None modifier.
Declaration Syntax
C#Visual BasicVisual C++J#
IChangeResult<T> Change<T>(
	T template,
	ChangeSet changeSet,
	ITransaction tx,
	long timeout,
	ChangeModifiers modifiers
)
Function Change(Of T) ( _
	template As T, _
	changeSet As ChangeSet, _
	tx As ITransaction, _
	timeout As Long, _
	modifiers As ChangeModifiers _
) As IChangeResult(Of T)
generic<typename T>
IChangeResult<T>^ Change(
	T template, 
	ChangeSet^ changeSet, 
	ITransaction^ tx, 
	long long timeout, 
	ChangeModifiers modifiers
)
J# supports the use of generic APIs, but not the declaration of new ones.
Generic Template Parameters
T
Type of object to change.
Parameters
template (T)
Query to search by.
changeSet (ChangeSet)
Changes to apply to the matched entry.
tx (ITransaction)
The transaction (if any) under which to work.
timeout (Int64)
The timeout of the operation, in milliseconds. If the entry is locked by another transaction wait for the specified number of milliseconds for it to be released.
modifiers (ChangeModifiers)
Operation modifiers.
Return Value
A IChangeResult<(Of <(T>)>) containing the details of the change operation affect.

Assembly: GigaSpaces.Core (Module: GigaSpaces.Core) Version: 12.1.0.0 (12.1.0.17000)