Table of Contents

Interface ScheduleMessage

Namespace
MassTransit.Scheduling
Assembly
MassTransit.Abstractions.dll
public interface ScheduleMessage

Properties

CorrelationId

Guid CorrelationId { get; }

Property Value

Guid

Destination

The destination where the message should be sent

Uri Destination { get; }

Property Value

Uri

Payload

The actual message payload to deliver

object Payload { get; }

Property Value

object

PayloadType

The message types implemented by the message

string[] PayloadType { get; }

Property Value

string[]

ScheduledTime

The time at which the message should be published, should be in UTC

DateTime ScheduledTime { get; }

Property Value

DateTime