Class ScheduleWithMetaDataCommand<I,M>
- java.lang.Object
-
- org.wildfly.clustering.ee.infinispan.scheduler.ScheduleWithMetaDataCommand<I,M>
-
- All Implemented Interfaces:
Serializable,Command<Void,CacheEntryScheduler<I,M>>,ScheduleCommand<I,M>
public class ScheduleWithMetaDataCommand<I,M> extends Object implements ScheduleCommand<I,M>
Command that schedules an item, where its meta data is persisted.- Author:
- Paul Ferraro
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScheduleWithMetaDataCommand(I id, M metaData)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IgetId()Returns the identifier of the element to be scheduled.MgetMetaData()Returns the meta data of the element to be scheduled.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.wildfly.clustering.ee.infinispan.scheduler.ScheduleCommand
execute
-
-
-
-
Method Detail
-
getId
public I getId()
Description copied from interface:ScheduleCommandReturns the identifier of the element to be scheduled.- Specified by:
getIdin interfaceScheduleCommand<I,M>- Returns:
- the identifier of the element to be scheduled.
-
getMetaData
public M getMetaData()
Description copied from interface:ScheduleCommandReturns the meta data of the element to be scheduled.- Specified by:
getMetaDatain interfaceScheduleCommand<I,M>- Returns:
- the meta data of the element to be scheduled.
-
-