Icon TEventRunType

Unit: dbisamtb

TEventRunType = (rtOnce,rtHourly,rtDaily,rtWeekly,rtMonthly,
      rtMinute)

This type is used to specify the run type of an event, either once, every X minutes, hourly, daily, weekly, or monthly. It is used a parameter to the TDBISAMSession AddRemoteEvent, ModifyRemoteEvent, and GetRemoteEvent methods, as well as the TDBISAMEngine AddServerEvent, ModifyServerEvent, and GetServerEvent methods.

ElementDescription
rtDailyIndicates that the event should be run daily.
rtHourlyIndicates that the event should be run hourly.
rtMinuteIndicates that the event should be run every X minutes.
rtMonthlyIndicates that the event should be run monthly.
rtOnceIndicates that the event should be run once.
rtWeeklyIndicates that the event should be run weekly.
Image