384385386387388389390391392393394
* value (ignore 0). */ public void setPeriod(long period) { if (this.period != period) { // Schedule the task. WakeUpNot not = new WakeUpNot(); not.update = true; forward(getId(), not); this.period = period; } }
194195196197198199200201202203204
* value. */ public void setPeriod(long period) { if (this.period != period) { // Schedule the task. WakeUpNot not = new WakeUpNot(); not.update = true; Channel.sendTo(getId(), not); this.period = period; } }