( self,
data,
handler,
timeout = _READ_TIMEOUT_SEC,
display_message = True,
truncate_message = False )
| 126 | # See the HandleFuture method for the |display_message| and |truncate_message| |
| 127 | # parameters. |
| 128 | def PostDataToHandler( self, |
| 129 | data, |
| 130 | handler, |
| 131 | timeout = _READ_TIMEOUT_SEC, |
| 132 | display_message = True, |
| 133 | truncate_message = False ): |
| 134 | return self.HandleFuture( |
| 135 | BaseRequest.PostDataToHandlerAsync( data, handler, timeout ), |
| 136 | display_message, |
| 137 | truncate_message ) |
| 138 | |
| 139 | |
| 140 | # This returns a future! Use HandleFuture to get the value. |
no test coverage detected