logo

abstract const class

web::WebStep

sys::Obj
  web::WebStep

WebStep defines a single step of a WebService's pipeline.

See docLib::Web

Slots

onAfterService

virtual Void onAfterService(WebReq req, WebRes res)

Callback after we've serviced the request.

Source

onBeforeService

virtual Void onBeforeService(WebReq req, WebRes res)

Callback before we begin servicing the request.

Source

onStart

virtual Void onStart(WebService service)

Callback when WebService is started.

Source

onStop

virtual Void onStop(WebService service)

Callback when WebService is stopped.

Source

service

virtual Void service(WebReq req, WebRes res)

Perform this step against the specified request and response. Return true

Source