( self )
| 43 | |
| 44 | |
| 45 | def Response( self ): |
| 46 | if self._cached_response: |
| 47 | return self._cached_response |
| 48 | |
| 49 | if not self._response_future or self._event_name != 'FileReadyToParse': |
| 50 | return [] |
| 51 | |
| 52 | self._cached_response = self.HandleFuture( self._response_future, |
| 53 | truncate_message = True ) |
| 54 | |
| 55 | return self._cached_response if self._cached_response else [] |
| 56 | |
| 57 | |
| 58 | def SendEventNotificationAsync( event_name, |
nothing calls this directly
no test coverage detected