Notify Start. Notify method for start of query. This method will be called before any queries are performed. This method will typically be overridden by higher level classes that will inherit from it. Keyword Arguments: self -- This objec
(self, message=None)
| 35 | return |
| 36 | |
| 37 | def start(self, message=None): |
| 38 | """Notify Start. |
| 39 | |
| 40 | Notify method for start of query. This method will be called before |
| 41 | any queries are performed. This method will typically be |
| 42 | overridden by higher level classes that will inherit from it. |
| 43 | |
| 44 | Keyword Arguments: |
| 45 | self -- This object. |
| 46 | message -- Object that is used to give context to start |
| 47 | of query. |
| 48 | Default is None. |
| 49 | |
| 50 | Return Value: |
| 51 | Nothing. |
| 52 | """ |
| 53 | |
| 54 | return |
| 55 | |
| 56 | def update(self, result): |
| 57 | """Notify Update. |
nothing calls this directly
no outgoing calls
no test coverage detected