Skip to content
This repository has been archived by the owner. It is now read-only.

Beetle-ru/methanum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Methanum is simple for use a .NET library for creating distributed systems with start topology.

First you should start the core in command prompt «Core.exe 2255».

Then client applications can send and receive messages. For this in a program code of a client application you should create connection:

var maingate = new Connector("localhost:2255");

You can create and send an event:

var evt = new Event("message");
evt.SetData("name", userName);
evt.SetData("text", msg);
maingate.Fire(evt);

If you want receive and handle messages you should set message handlers:

maingate.SetHandler("message", MsgHandler);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages