Skip to content
This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
/ AkkaNetRest Public archive

Proof of concept for using Akka.NET for creating REST api services

License

Notifications You must be signed in to change notification settings

shersh/AkkaNetRest

Repository files navigation

AkkaNetRest

Proof of concept for using Akka.NET for creating REST api services

Using

Creating simple api "controller":

  public class HelloApi : BaseApi
    {
        public HelloApi()
        {
            Get(req => "Hello from Akka");
        }
    }

And after instiatiate it in api actor :

Context.ActorOf<HelloApi>("hello");

now you can call GET method for /api/hello

About

Proof of concept for using Akka.NET for creating REST api services

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages