mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
19 lines
507 B
C#
19 lines
507 B
C#
namespace Microsoft.AspNetCore.NodeServices
|
|
{
|
|
/// <summary>
|
|
/// Represents a way of creating and invoking code in a Node.js environment.
|
|
/// </summary>
|
|
public enum NodeHostingModel
|
|
{
|
|
/// <summary>
|
|
/// An out-of-process Node.js instance where RPC calls are made via HTTP.
|
|
/// </summary>
|
|
Http,
|
|
|
|
/// <summary>
|
|
/// An out-of-process Node.js instance where RPC calls are made over binary sockets.
|
|
/// </summary>
|
|
Socket,
|
|
}
|
|
}
|