Save time in every aspect of your DevOps workflow
Build-in enforced security checks and data encryption
Build-in Load-Balancing, Clustering, Redundancy and Fault-tolerance
Fast and efficient handling
of requests keeps your services fast and responsive
Reveal bugs and API incompatibilities at compile-time.
Running on .net core using the non-blocking TAP model (async/await) for maximum performance
All components can run on your own servers, without any external dependencies
Easy and intuitive service deployment and node management from a single portal
Save time in every aspect of your DevOps workflow
Build-in enforced security checks and data encryption
Build-in Load-Balancing, Clustering, Redundancy and Fault-tolerance
Fast and efficient handling
of requests keeps your services fast and responsive
Reveal bugs and API incompatibilities at compile-time.
Running on .net core using the non-blocking TAP model (async/await) for maximum performance
All components can run on your own servers, without any external dependencies
Easy and intuitive service deployment and node management from a single portal
[Action(Methods.GET)]
public string SayHello(string firstName, string lastName) => $"Hello {firstName} {lastName} !";
[Action(Methods.GET)]
public async Task<ProductInfo> GetProductInfo(int productId)
{
//query db asynchronously and await result
var product = await db.Products.FirstAsync(productId);
//return response
return new
ProductInfo()
{
Name = product.Name,
Version = product.Version,
};
}
Congratulations, you just created a new
micro-service action!
The above code is a simple code example of everything you need to create a new action for you service.
For more samples and information you can have a look at the documentation
Read our :
Terms & Conditions and
Privacy Policy
Copyright © 2024 Phoesion.
All rights reserved