ShipitSmarter.Core.Messaging 8.0.30

dotnet add package ShipitSmarter.Core.Messaging --version 8.0.30
NuGet\Install-Package ShipitSmarter.Core.Messaging -Version 8.0.30
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ShipitSmarter.Core.Messaging" Version="8.0.30" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ShipitSmarter.Core.Messaging --version 8.0.30
#r "nuget: ShipitSmarter.Core.Messaging, 8.0.30"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ShipitSmarter.Core.Messaging as a Cake Addin
#addin nuget:?package=ShipitSmarter.Core.Messaging&version=8.0.30

// Install ShipitSmarter.Core.Messaging as a Cake Tool
#tool nuget:?package=ShipitSmarter.Core.Messaging&version=8.0.30

ShipitSmarter.Core.Messaging

Defines the core objects, interfaces and implentations for handling messages.

Define a new message

A new message should implement the IMessageContract<TMessage> interface, so the definition of how to serialize and deserialize the message is defined with the message itself. Implemting this interface also allows the new message to be handled by the Publisher and Subscriber packages.

This package provides a default implementation of the IMessageContract<TMessage>, the JsonMessageContract<TMessage> that will serialize the data as JSON. To create a new message using this implenation, simply extend from this class and define your data structure for the message:

using ShipitSmarter.Core.Messaging;

public class ExampleEvent : JsonMessageContract<ExampleEvent> {
    public Guid ExampleId { get; }
    public string SomeStringProperty { get; }
    public int SomeIntProperty { get; }

    public ExampleEvent(
        Guid exampleId,
        string someStringProperty,
        int someIntProperty
    )
    {
        ExampleId = exampleId;
        SomeStringProperty = someStringProperty;
        SomeIntProperty = someIntProperty;
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on ShipitSmarter.Core.Messaging:

Package Downloads
ShipitSmarter.Core.Messaging.Publisher

A set of core functionalities used across ShipItSmarter for message sending functionalities

ShipitSmarter.Core.Messaging.Subscriber

A set of core functionalities used across ShipItSmarter for message receiving functionalities

Viya.Shipping.Events

Events that are sent out by Shipping

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.30 137 4/8/2024
8.0.30-20240408113247.pr59... 36 4/8/2024
8.0.29 125 4/8/2024
8.0.29-20240408082248.pr60... 44 4/8/2024
8.0.29-20240405125807.pr59... 37 4/5/2024
8.0.29-20240405123857.pr59... 35 4/5/2024
8.0.28 85 4/5/2024
8.0.28-20240405095528.pr58... 36 4/5/2024
8.0.27 196 4/5/2024
8.0.27-20240404132455.pr57... 38 4/4/2024
8.0.26 159 3/15/2024
8.0.25 98 3/15/2024
8.0.25-20240315091624.pr55... 43 3/15/2024
8.0.24 458 3/14/2024
8.0.24-20240314103121.pr54... 46 3/14/2024
8.0.24-20240314102733.pr54... 41 3/14/2024
8.0.23 94 3/14/2024
8.0.23-20240313154945.pr53... 42 3/13/2024
8.0.22 126 3/13/2024
8.0.22-20240313111340.pr52... 44 3/13/2024
8.0.22-20240312092108.pr52... 38 3/12/2024
8.0.22-20240311145707.pr51... 38 3/11/2024
8.0.22-20240311145440.pr51... 38 3/11/2024
8.0.21 80 3/11/2024
8.0.21-20240311073331.pr50... 44 3/11/2024
8.0.21-20240308155628.pr50... 44 3/8/2024
8.0.21-20240308155514.pr50... 37 3/8/2024
8.0.20 146 3/7/2024
8.0.20-20240306102724.pr49... 54 3/6/2024
8.0.20-20240306074606.pr49... 48 3/6/2024
8.0.20-20240305130535.pr49... 32 3/5/2024
8.0.20-20240305125122.pr49... 41 3/5/2024
8.0.20-20240305102258.pr49... 44 3/5/2024
8.0.20-20240305073153.pr49... 45 3/5/2024
8.0.20-20240304150120.pr49... 45 3/4/2024
8.0.20-20240304141818.pr49... 42 3/4/2024
8.0.19 133 2/28/2024
8.0.19-20240228151419.pr48... 45 2/28/2024
8.0.19-20240228145935.pr48... 47 2/28/2024
8.0.18 133 2/28/2024
8.0.18-20240228102420.pr47... 38 2/28/2024
8.0.17 191 2/27/2024
8.0.17-20240227140309.pr46... 38 2/27/2024
8.0.16 106 2/26/2024
8.0.15 106 2/26/2024
8.0.15-20240226090939.pr43... 33 2/26/2024
8.0.15-20240226085624.pr44... 37 2/26/2024
8.0.15-20240223160221.pr43... 41 2/23/2024
8.0.15-20240223155350.pr43... 40 2/23/2024
8.0.15-20240223154647.pr43... 42 2/23/2024
8.0.15-20240223154022.pr43... 42 2/23/2024
8.0.14 212 2/22/2024
8.0.14-20240222093550.pr41... 44 2/22/2024
8.0.13 112 2/22/2024
8.0.13-20240222092403.pr40... 47 2/22/2024
8.0.12 113 2/21/2024
8.0.12-20240221131054.pr39... 45 2/21/2024
8.0.11 81 2/20/2024
8.0.11-20240220152343.pr37... 44 2/20/2024
8.0.11-20240220151933.pr37... 42 2/20/2024
8.0.11-20240220143636.pr37... 44 2/20/2024
8.0.10-20240220141432.pr37... 43 2/20/2024
8.0.10-20240220135140.pr37... 43 2/20/2024
8.0.10-20240220134817.pr37... 42 2/20/2024
8.0.10-20240220104731.pr37... 45 2/20/2024
8.0.10-20240220090545.pr37... 45 2/20/2024