1 | <?php |
||
8 | class BalancerUrlRequest extends OrtcRequest |
||
9 | { |
||
10 | /** |
||
11 | * get url path (not base url). |
||
12 | * |
||
13 | * @return string |
||
14 | */ |
||
15 | 1 | public function getUrlPath() |
|
26 | |||
27 | /** |
||
28 | * is post request or get request? |
||
29 | * |
||
30 | * @return bool |
||
31 | */ |
||
32 | 1 | public function isPost() |
|
36 | |||
37 | /** |
||
38 | * get post body. |
||
39 | * |
||
40 | * @return array |
||
41 | */ |
||
42 | 1 | public function getPostData() |
|
46 | |||
47 | /** |
||
48 | * get response handler. |
||
49 | * |
||
50 | * @return OrtcResponseHandler |
||
51 | */ |
||
52 | 1 | public function getResponseHandler() |
|
56 | |||
57 | 1 | public function isUrlAbsolute() |
|
61 | } |
||
62 |