{"id":19992546,"url":"https://github.com/iiwaasnet/kino","last_synced_at":"2026-01-14T04:42:10.607Z","repository":{"id":33754159,"uuid":"37409416","full_name":"iiwaasnet/kino","owner":"iiwaasnet","description":"Kino - framework for building Actors networks","archived":false,"fork":false,"pushed_at":"2022-12-08T08:56:50.000Z","size":5555,"stargazers_count":26,"open_issues_count":1,"forks_count":6,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-10-28T05:13:26.490Z","etag":null,"topics":["actor","actor-framework","actor-model","actors","actors-networks","communication-library","distributed-systems","kino","microservices","reactive-programming","reactive-services","rendezvous"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iiwaasnet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-14T11:11:56.000Z","updated_at":"2023-06-26T21:21:14.000Z","dependencies_parsed_at":"2023-01-15T02:21:31.250Z","dependency_job_id":null,"html_url":"https://github.com/iiwaasnet/kino","commit_stats":null,"previous_names":[],"tags_count":55,"template":false,"template_full_name":null,"purl":"pkg:github/iiwaasnet/kino","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iiwaasnet%2Fkino","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iiwaasnet%2Fkino/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iiwaasnet%2Fkino/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iiwaasnet%2Fkino/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iiwaasnet","download_url":"https://codeload.github.com/iiwaasnet/kino/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iiwaasnet%2Fkino/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28409764,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actor","actor-framework","actor-model","actors","actors-networks","communication-library","distributed-systems","kino","microservices","reactive-programming","reactive-services","rendezvous"],"created_at":"2024-11-13T04:52:12.940Z","updated_at":"2026-01-14T04:42:10.592Z","avatar_url":"https://github.com/iiwaasnet.png","language":"C#","funding_links":[],"categories":["C\\#"],"sub_categories":[],"readme":"# Kino - framework for building Actor networks\n\n\n[![Build status](https://ci.appveyor.com/api/projects/status/khn5imataa5uw4oj?svg=true)](https://ci.appveyor.com/project/iiwaasnet/kino)\n[![NuGet version](https://badge.fury.io/nu/kino.svg)](https://badge.fury.io/nu/kino)\n\n\nKino\n------------------------\n**Kino** is a simple communication framework based on *[Actor model](https://en.wikipedia.org/wiki/Actor_model)*.\n\nUnicast, multicast and direct message addressing, delivery-to-node confirmation, callbacks (routing response message to the *resumption* actor). Rendezvous service provides actors auto-discovery and reduces amount of required configuration. Actors can be single- or multithreaded.\n\nSupported Platforms: .NET 4.7, .NET Core 2.1\n\nWhat's new\n------------------------\nPartner Rendezvous clusters can be configured to access actors from other networks.\n\nIt is simple!\n-------------------------------------\n#### Define an Actor:\n\n```csharp\npublic class MyMessageProcessor : Actor\n{\n    [MessageHandlerDefinition(typeof (MyMessage))]\n    public async Task\u003cIActorResult\u003e MyMessageHandler(IMessage message)\n    {\n        // method body\n    }\n}\n```\n#### Send a Message:\n\n```csharp\n// Just create a message you would like to send\nIMessage request = Message.CreateFlowStartMessage(new MyMessage());\n// Define result message you would like to receive\nICallbackPoint callbackPoint = CallbackPoint.Create\u003cResultMessage\u003e();\n// Now, send the message. No need to know actor address, ID or anything else!\nIPromise promise = messageHub.Send(request, callbackPoint);\n// Wait for result\nResultMessage result = promise.GetResponse().Result.GetPayload\u003cResultMessage\u003e();\n```\n\nTell me more!\n-------------------------------------\nIf you are interested in the project, please, read [wiki](https://github.com/iiwaasnet/kino/wiki) for details about the framework, ask related questions or suggest features in chat! [![Join the chat at https://gitter.im/iiwaasnet/kino](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/iiwaasnet/kino?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n\n* [Introduction](https://github.com/iiwaasnet/kino/wiki)\n* [Messages](https://github.com/iiwaasnet/kino/wiki/Messages)\n* [Actors](https://github.com/iiwaasnet/kino/wiki/Actors)\n* [ActorHost](https://github.com/iiwaasnet/kino/wiki/ActorHost)\n* [MessageHub](https://github.com/iiwaasnet/kino/wiki/MessageHub)\n* [MessageRouter](https://github.com/iiwaasnet/kino/wiki/MessageRouter)\n* [Rendezvous](https://github.com/iiwaasnet/kino/wiki/Rendezvous)\n* [Configuration](https://github.com/iiwaasnet/kino/wiki/Configuration)\n\nkino-based Projects\n-------------------------------------\n* [LeaseProvider Service](https://github.com/iiwaasnet/kino.LeaseProvider)\n \n\nPowered by **[NetMQ](https://github.com/zeromq/netmq)**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiiwaasnet%2Fkino","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiiwaasnet%2Fkino","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiiwaasnet%2Fkino/lists"}