コード例 #1
0
        // SAMPLE: ScheduleSend-In-3-Days
        public async Task schedule_send(IMessageContext context, Guid issueId)
        {
            var timeout = new WarnIfIssueIsStale
            {
                IssueId = issueId
            };

            // Process the issue timeout logic 3 days from now
            await context.ScheduleSend(timeout, 3.Days());
        }
コード例 #2
0
        // ENDSAMPLE

        // SAMPLE: ScheduleLocally-In-3-Days
        public async Task schedule_locally(IMessageContext context, Guid issueId)
        {
            var timeout = new WarnIfIssueIsStale
            {
                IssueId = issueId
            };

            // Process the issue timeout logic 3 days from now
            // in *this* system
            await context.Schedule(timeout, 3.Days());
        }
コード例 #3
0
        // ENDSAMPLE

        // SAMPLE: ScheduleSend-At-5-PM-Tomorrow
        public async Task schedule_send_at_5_tomorrow_afternoon(IMessageContext context, Guid issueId)
        {
            var timeout = new WarnIfIssueIsStale
            {
                IssueId = issueId
            };

            var time = DateTime.Today.AddDays(1).AddHours(17);


            // Process the issue timeout at 5PM tomorrow
            // Do note that Jasper quietly converts this
            // to universal time in storage
            await context.ScheduleSend(timeout, time);
        }
コード例 #4
0
        // ENDSAMPLE

        // SAMPLE: ScheduleSend-Yourself
        public async Task send_at_5_tomorrow_afternoon_yourself(IMessageContext context, Guid issueId)
        {
            var timeout = new WarnIfIssueIsStale
            {
                IssueId = issueId
            };

            var time = DateTime.Today.AddDays(1).AddHours(17);


            // Process the issue timeout at 5PM tomorrow
            // Do note that Jasper quietly converts this
            // to universal time in storage
            await context.SendEnvelope(new Envelope(timeout)
            {
                ExecutionTime = time
            });
        }