Package io.temporal.client.schedules
Class ScheduleListInfo
- java.lang.Object
-
- io.temporal.client.schedules.ScheduleListInfo
-
public final class ScheduleListInfo extends java.lang.ObjectInformation about a listed schedule.
-
-
Constructor Summary
Constructors Constructor Description ScheduleListInfo(java.util.List<ScheduleActionResult> recentActions, java.util.List<java.time.Instant> nextActionTimes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.List<java.time.Instant>getNextActionTimes()Next scheduled action times.java.util.List<ScheduleActionResult>getRecentActions()Most recent actions, oldest first.inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
ScheduleListInfo
public ScheduleListInfo(java.util.List<ScheduleActionResult> recentActions, java.util.List<java.time.Instant> nextActionTimes)
-
-
Method Detail
-
getRecentActions
public java.util.List<ScheduleActionResult> getRecentActions()
Most recent actions, oldest first. This may be a smaller count than ScheduleInfo.RecentActions- Returns:
- The most recent action
-
getNextActionTimes
public java.util.List<java.time.Instant> getNextActionTimes()
Next scheduled action times. This may be a smaller count than ScheduleInfo.NextActions.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-