(self, options)
| 426 | |
| 427 | @exportRpc("viewport.image.push") |
| 428 | def imagePush(self, options): |
| 429 | sView = self.getView(options["view"]) |
| 430 | realViewId = str(self.getGlobalId(sView)) |
| 431 | # Make sure an image is pushed |
| 432 | self.getApplication().InvalidateCache(sView) |
| 433 | self.pushRender(realViewId) |
| 434 | |
| 435 | # Internal function since the reply[image] is not |
| 436 | # JSON(serializable) it can not be an RPC one |
nothing calls this directly
no test coverage detected