EmitterSharp 1.1.1.1

Requires NuGet 2.12 or higher.

dotnet add package EmitterSharp --version 1.1.1.1
NuGet\Install-Package EmitterSharp -Version 1.1.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EmitterSharp" Version="1.1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EmitterSharp --version 1.1.1.1
#r "nuget: EmitterSharp, 1.1.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EmitterSharp as a Cake Addin
#addin nuget:?package=EmitterSharp&version=1.1.1.1

// Install EmitterSharp as a Cake Tool
#tool nuget:?package=EmitterSharp&version=1.1.1.1

EmitterSharp

C# implementation of Emitter in JavaScript module.

Installation

  • Nuget gallery

  • Command Install-Package EmitterSharp in nuget package manager console.

Usage

Namespace

using EmitterSharp;

Inheritance

class ExampleEmitter : Emitter<ExampleEmitter, string, object>
{
  ...
}

Emitter<TChildClass, TEvent, TArgument>

public abstract class Emitter<TChildClass, TEvent, TArgument>
  • The first generic type is a type of class that inherits Emitter. This is used for chaining.
  • The second generic type is a type of event.
  • The third generic type is a type of argument in callback.

Listener

void ExampleCallback() 
{
  Console.WriteLine("This is callback.");
}

void ExampleCallbackWithArgument(object value) 
{
  if (value != null) 
  {
    Console.WriteLine("This is callback : " + value);
  }
  else
  {
    Console.WriteLine("This is callback... Wait, what?");
  }
}

ExampleEmitter emitter = new ExampleEmitter();

emitter.On("custom event", () => Console.WriteLine("Hello world!")); // Callback can be lambda without argument.
emitter.On("custom event", (value) => // Callback can be lambda with argument.
{
  if (value != null)
  {
    Console.WriteLine(value);
  }
  else 
  {
    Console.WriteLine("Excuse me?");
  }
});

emitter.On("custom event", ExampleCallback); // Callback can be method without argument.
emitter.On("custom event", ExampleCallbackWithArgument); // Callback can be method with argument.

emitter.Emit("custom event"); // Emit without argument.
// Console will print "Hello world!", "Excuse me?", "This is callback." and "This is callback... Wait, what?"

emitter.Emit("custom event", 30); // Emit with argument.
// Console will print "Hello world!", 30, "This is callback." and "This is callback : 30"

Emit without argument

  • When Emitter.Emit is called only with event, default value of argument is always 0.
  • If TArgument is bool, default value of argument is false since it's defined as 0.
  • If TArgument is string, default value of argument is null since it's a reference to address 0.
  • If TArgument is IntPtr, default value of argument is IntPtr.Zero that is defined as null reference.

Maintenance

Welcome to report issue or create pull request. I will check it happily.

Dependencies

License

EmitterSharp is under The MIT License.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EmitterSharp:

Package Downloads
EngineIOSharp

C# implementation of Engine.IO protocol revision 3 client and server.

EngineIOSharp2

add socket connection pre-processing(by https://www.nuget.org/packages/EngineIOSharp/2.0.0.1)

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on EmitterSharp:

Repository Stars
uhm0311/SocketIOSharp
C# implementation of Socket.IO protocol revision 4 client and server.
Version Downloads Last updated
1.1.1.1 27,886 5/11/2020

Add .Net core 2.0, 3.0 support.