Interface ILockStep
A mechanism to lock changes for various components, to ensure multiple changes happen at once.
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface ILockStep
Methods
| Improve this Doc View SourceLock()
Locks the component from making changes.
Declaration
void Lock()
PrepareForUnlock()
Prepares the component for unlocking (changes are calculated based on everything that happened since the lock), but no events are not fired yet.
Declaration
void PrepareForUnlock()
Unlock()
Unlock this component and fires any change events if there were changes.
Declaration
void Unlock()