Skip to content

Files

Latest commit

fdfaa66 · Feb 27, 2024

History

History

orleans

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 27, 2024
Feb 1, 2021
Jan 10, 2024

Microsoft Orleans (5)

These are simple samples to play with Microsoft Orleans, a cross-platform framework for building robust, scalable distributed applications.

Orleans 8

  • Orleans - 1

    This sample shows how to use Orleans 8 in a minimal API application. It shows the new way on how to configure an Orleans server.

  • Orleans - 2

    This is a sample project that shows how to use Redis as a persistence provider for Orleans.

  • Orleans - 3

    This sample demonstrates the functionality of Orleans' Timer via Grain.RegisterTimer. It's useful to trigger actions to be repeated frequently (less than every minute).

  • Orleans - 4

    This sample demonstrates the functionality of Orleans' Reminder via Grain.RegisterOrUpdateReminder. It's useful to trigger actions to be repeated infrequently (more than every minute, hours or days). This is a persistent timer that survives grain restarts. Reminder is much expensive than Timer.

  • Orleans - 5

    This sample demonstrates using HttpClient in a grain and also introduces the concept of a Stateless Worker grain.