OCLOperators RunServerSideViewModelNow
No edit summary
No edit summary
Line 1: Line 1:
RunServerSideViewModelNow asks an implementing PeristenceServer - like MDrivenServer - to hurry up and execute a ServerSideViewModel asap.
RunServerSideViewModelNow asks an implementing PeristenceServer - like MDrivenServer - to hurry up and execute a ServerSideViewModel asap.


ServerSideViewModels are implemented by the MDrivenServer. They are often used to synchronize tasks such as assigning a new sequence number or the like. The pattern is that the Client sets a state that the ServerSideViewModel finds with the ServerSide PS Criteria and then executes actions and saves.
ServerSideViewModels are implemented by the MDrivenServer. They are often used to synchronize tasks such as assigning a new sequence number or the like. Often, the pattern is that the Client sets a state that the ServerSideViewModel finds with the ServerSide PS Criteria and then executes actions and saves.


The Client waits for this to happen and issues a selfVM.Refresh to get the new data.
The Client waits for this to happen and issues a selfVM.Refresh to get the new data.
Line 11: Line 11:
  selfVM.RunServerSideViewModelNow( SomeClass.ViewModels.SomeServerSideViewModelWeWaitFor );  
  selfVM.RunServerSideViewModelNow( SomeClass.ViewModels.SomeServerSideViewModelWeWaitFor );  
  selfVM.Refresh
  selfVM.Refresh
[[Category:OCLOperators]]
  [[Category:OCLOperators]]

Revision as of 06:37, 6 March 2023

RunServerSideViewModelNow asks an implementing PeristenceServer - like MDrivenServer - to hurry up and execute a ServerSideViewModel asap.

ServerSideViewModels are implemented by the MDrivenServer. They are often used to synchronize tasks such as assigning a new sequence number or the like. Often, the pattern is that the Client sets a state that the ServerSideViewModel finds with the ServerSide PS Criteria and then executes actions and saves.

The Client waits for this to happen and issues a selfVM.Refresh to get the new data.

Since ServerSideViewModels are polled with a defined interval (periodicity), the wait for the Client may be longer than optimal for user experience.

Use this call to influence the server to check for execution need as soon as possible instead of waiting for the interval period:

selfVM.Save; 
selfVM.RunServerSideViewModelNow( SomeClass.ViewModels.SomeServerSideViewModelWeWaitFor ); 
selfVM.Refresh
This page was edited 95 days ago on 06/17/2024. What links here