Date / Time | 43 |Description | 44 |
---|---|
<%= e.Timestamp %> | 49 |<%= X.Raw(e.Description) %> | 50 |
Type | 111 |
---|
<%= l.GetType() %> | 116 |
Name | 131 |Description | 132 |
---|---|
<%= cal.Key %> | 137 |<%= cal.Value %> | 138 |
Name | 152 |Status | 153 |154 | |
---|---|---|
159 | ><%= group.Name %> 160 | | 161 |<%= IfNullable(group.Paused, ifNull:="N/A", ifTrue:="Paused", ifFalse:="Started") %> | 162 |163 | <%= IfNullable(group.Paused, 164 | ifNull:=, 165 | ifTrue:=SimpleForm("scheduler.ashx?method=Resume" & entity & "Group&groupName=" + group.Name, "Resume"), 166 | ifFalse:=SimpleForm("scheduler.ashx?method=Pause" & entity & "Group&groupName=" + group.Name, "Pause")) %> 167 | | 168 |
Name | 187 |188 | |
---|---|
<%= listener.Key %> | 193 |194 | <%= SimpleForm("scheduler.ashx?method=RemoveGlobal" & entity & "Listener&name=" & listener.Key, "Delete") %> 195 | | 196 |
Name | 282 |Description | 283 |Type | 284 |Durable | 285 |Persist data after execution | 286 |Concurrent execution disallowed | 287 |Requests recovery | 288 |Running since | 289 |290 | |
---|---|---|---|---|---|---|---|---|
<%= j.Job.Key.Name %> | 300 |<%= j.Job.Description %> | 301 |<%= j.Job.JobType %> | 302 |<%= YesNo(j.Job.Durable) %> | 303 |<%= YesNo(j.Job.PersistJobDataAfterExecution) %> | 304 |<%= YesNo(j.Job.ConcurrentExecutionDisallowed) %> | 305 |<%= YesNo(j.Job.RequestsRecovery) %> | 306 |<%= If(j.JobContext IsNot Nothing, j.JobContext.FireTimeUtc, Nothing) %> | 307 |308 | >Triggers 309 | <%= SimpleForm(op("DeleteJob"), "Delete") %> 310 | <%= SimpleForm(op("PauseJob"), "Pause") %> 311 | <%= SimpleForm(op("ResumeJob"), "Resume") %> 312 | <%= SimpleForm(op("TriggerJob"), "Trigger") %> 313 | <%= If(j.Interruptible, SimpleForm(op("Interrupt"), "Interrupt"), Nothing) %> 314 | | 315 |
Name | 346 |Description | 347 |Priority | 348 |Job group | 349 |Job name | 350 |Start time UTC | 351 |End time UTC | 352 |Final fire time UTC | 353 |Next fire time UTC | 354 |Repeat count | 355 |Repeat interval | 356 |Times triggered | 357 |Cron | 358 |Calendar | 359 |State | 360 |361 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<%= trigger.Key.Name %> | 375 |<%= trigger.Description %> | 376 |<%= trigger.Priority %> | 377 |378 | ><%= trigger.JobKey.Group %> 379 | | 380 |381 | > 384 | <%= trigger.JobKey.Group %> 385 | 386 | | 387 |<%= trigger.StartTimeUtc %> | 388 |<%= trigger.EndTimeUtc %> | 389 |<%= trigger.FinalFireTimeUtc %> | 390 |<%= trigger.GetNextFireTimeUtc() %> | 391 |<%= If(simpleTrigger IsNot Nothing, simpleTrigger.RepeatCount.ToString, "") %> | 392 |<%= If(simpleTrigger IsNot Nothing, simpleTrigger.RepeatInterval.ToString, "") %> | 393 |<%= If(simpleTrigger IsNot Nothing, simpleTrigger.TimesTriggered.ToString, "") %> | 394 |395 | <%= If(cronTrigger IsNot Nothing, 396 | > 397 | <%= X.SpacesToNbsp(cronTrigger.CronExpressionString) %> 398 | , 399 | X.NoElements) 400 | %> 401 | | 402 |<%= trigger.CalendarName %> | 403 |<%= tr.State %> | 404 |405 | <%= If(tr.IsPaused, 406 | SimpleForm(op("ResumeTrigger"), "Resume"), 407 | SimpleForm(op("PauseTrigger"), "Pause")) %> 408 | 409 | <%= SimpleForm(op("UnscheduleJob"), "Delete") %> 410 | | 411 |