This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Protocols | |
| open System | |
| open System.Runtime.ExceptionServices | |
| type Endpoint = string | |
| type TTL = int | |
| type Binary = byte[] | |
| type MessageId = Guid | |
| type Round = uint64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Reference: https://asc.di.fct.unl.pt/~jleitao/pdf/dsn07-leitao.pdf | |
| module Protocols.Hyparview | |
| open System | |
| open System.Runtime.ExceptionServices | |
| open System.Threading | |
| type Endpoint = string | |
| type TTL = int |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| open System | |
| open System.Threading | |
| open Akkling | |
| open DemoFs | |
| [<EntryPoint>] | |
| let main argv = | |
| let config = """ | |
| akka.loglevel = DEBUG |