Notify Update. Notify method for query result. This method will typically be overridden by higher level classes that will inherit from it. Keyword Arguments: self -- This object. result -- Object of type QueryResult() conta
(self, result)
| 54 | return |
| 55 | |
| 56 | def update(self, result): |
| 57 | """Notify Update. |
| 58 | |
| 59 | Notify method for query result. This method will typically be |
| 60 | overridden by higher level classes that will inherit from it. |
| 61 | |
| 62 | Keyword Arguments: |
| 63 | self -- This object. |
| 64 | result -- Object of type QueryResult() containing |
| 65 | results for this query. |
| 66 | |
| 67 | Return Value: |
| 68 | Nothing. |
| 69 | """ |
| 70 | |
| 71 | self.result = result |
| 72 | |
| 73 | return |
| 74 | |
| 75 | def finish(self, message=None): |
| 76 | """Notify Finish. |
nothing calls this directly
no outgoing calls
no test coverage detected