How can I check for a boolean to change state over a given period of time, and if a change is made over that time period perform a method?
Can any help please be given in Java.
Thanks.
|
|
|
Sounds like you want to wrap a boolean in a class which you can listen for changes on.
Then simply do:
This is actually a simple case of the MVC pattern (and the observer pattern). The model in this case is the ObservableBoolean and the view would be the "view" that want's to be notified of the changes. You could also write your own |
|||||||||||||||||||
|
|
The easiest way to do this is with a wrapper class...
This is a common pattern in Swing, and you can use PropertyChangeSupport to simplify the creation of objects on which you can observe and listen for property changes. With such classes, you can register a PropertyChangeListener to handle the resulting PropertyChangeEvents that result. |
|||
|
use Googling those things should give you good start edit : From question it is not quite clear what are his intends. Maybe he wants to invoke some method in exact period of time, not immediatelly after event. For this pattern, I'd still rather stick to timer, or write my own Thread. Writing own Thread is still best way of interpreting specific user requirements. On the other hand, if this is really case of listening to events, my Timer pattern would be completely wrong. example : I want to update database (imagine web browser game) every 5 minutes, if users requests so (reques = true). With false request, I don't need to update database. Immediatelly update database (f.e. stats in game Tribal Wars with thoushands of players) is totally overkill. |
|||||||||||||
|
|
Seems like you should look to implement some sort of The basic idea is that you should fire an event when the boolean is changed, and then that event is fired, your listener should handle that. |
|||
|
|