You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MSMQ v1.2 introduced native timeouts to the MSMQ transport. It used SQL Server as storage and is almost identical to the table schema for NHibernare/SQLP.
create table {0} (
Id nvarchar(250) not nullprimary key,
Destination nvarchar(200),
State varbinary(max),
Time datetime,
Headers varbinary(max) not null,
RetryCount INTNOT NULL default(0)
)
Describe the feature.
MSMQ v1.2 introduced native timeouts to the MSMQ transport. It used SQL Server as storage and is almost identical to the table schema for NHibernare/SQLP.
Source: https://github.com/Particular/NServiceBus.Transport.Msmq/blob/release-1.2/src/NServiceBus.Transport.Msmq/DelayedDelivery/Sql/SqlConstants.cs
It would help customers migrate away from MSMQ.
Additional Context
No response
The text was updated successfully, but these errors were encountered: