Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Nov 12, 2020. It is now read-only.
Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

111 Commits
111 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nvents - Open source library for strongly typed publishing/subscribing of events over the network.

Release history:

0.7 2012-06-17

  • Removed IEvent and added NamedPipesService [nvents 0.7 with poco and IPC support] 4

0.6 2011-03-08

  • Added support for .NET 3.5 (custom udp based service locator) [nvents 0.6 now runs on .NET 3.5 and 4.0] 3

0.5 2011-02-07

  • Fixed Issue #1 "WCF Timeout Exception"
  • Added EventSubscription to simplify standard .NET events

0.4 2010-12-13

  • Increased performance and added inheritance support [Performance improvements and inheritance support in nvents 0.4] 2

0.3 2010-11-09

  • Added encryption, handlers and filters [Encryption, handlers and filters in version 0.3] 1

0.2 2010-10-18

  • Fixed security exception
  • NetworkService to explicity set IPAddress and port
  • Only requiring .NET Framework 4 Client Profile

0.1 2010-10-12

  • initial release

Sample code

using System;
using Nvents;

namespace NventsSample
{
  class Program
  {
	static void Main(string[] args)
	{
	  // subscribe to events
	  Events.Subscribe<FooEvent>(
		e => Console.WriteLine(e.Bar));

	  // publish events
	  Events.Publish(new FooEvent { Bar = "FooBar" });

	  Console.ReadLine();
	}
  }

  public class FooEvent
  {
	public string Bar { get; set; }
  }
}

About

.NET events across the network

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.