Click or drag to resize
MvProcessProcessRequest Method
Called by Run(Int32, Int32) to execute a request issued by a component.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public abstract bool ProcessRequest(
	int timeout
)

Parameters

timeout
Type: SystemInt32
The maximum time during which the function must wait for an incoming component request. If no request is input after this lapse, the method should return false, thus causing the view-server execution loop to stop. Otherwise, this method will return true.

Return Value

Type: Boolean
true to continue the event loop, false to stop it.
Remarks
It must be overridden in subtypes of MvProcess as has been done in the class MvProcess.
See Also