Package org.italiangrid.voms.store
Interface Updateable
-
- All Known Subinterfaces:
UpdatingVOMSTrustStore
- All Known Implementing Classes:
DefaultUpdatingVOMSTrustStore
public interface UpdateableRepresents an object which can be periodically updated according to an update frequency.- Author:
- Andrea Ceccanti
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancel()Cancels the future updates of thisUpdateableobject.longgetUpdateFrequency()voidupdate()Updates the object.
-
-
-
Method Detail
-
getUpdateFrequency
long getUpdateFrequency()
- Returns:
- the frequency (in milliseconds) currently set for this
Updateableobject.
-
update
void update()
Updates the object.
-
cancel
void cancel()
Cancels the future updates of thisUpdateableobject.
-
-