| MvProcessProcessRequest Method |
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public abstract bool ProcessRequest(
int timeout
)
Public MustOverride Function ProcessRequest (
timeout As Integer
) As Boolean
public:
virtual bool ProcessRequest(
int timeout
) abstract
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:
Booleantrue to continue the event loop,
false to stop it.
Remarks See Also