func (self *JSRE) mainLoop() { // Subscribe to events reactor := self.ethereum.Reactor() reactor.Subscribe("newBlock", self.blockChan) out: for { select { case <-self.quitChan: break out case block := <-self.blockChan: if _, ok := block.Resource.(*ethchain.Block); ok { } case object := <-self.changeChan: if stateObject, ok := object.Resource.(*ethchain.StateObject); ok { for _, cb := range self.objectCb[ethutil.Bytes2Hex(stateObject.Address())] { val, _ := self.vm.ToValue(ethpub.NewPStateObject(stateObject)) cb.Call(cb, val) } } else if storageObject, ok := object.Resource.(*ethchain.StorageState); ok { for _, cb := range self.objectCb[ethutil.Bytes2Hex(storageObject.StateAddress)+ethutil.Bytes2Hex(storageObject.Address)] { val, _ := self.vm.ToValue(ethpub.NewPStorageState(storageObject)) cb.Call(cb, val) } } } } }
func (app *QmlApplication) StorageChanged(storageObject *ethstate.StorageState) { app.win.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject)) }
func (app *HtmlApplication) StorageChanged(storageObject *ethchain.StorageState) { app.webView.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject)) }