Elders.Hystrix.NET.HystrixCommandKey.HystrixCommandKey C# (CSharp) Method

HystrixCommandKey() public method

Initializes a new instance of the HystrixCommandKey class based on the type of the command. This used to create default command keys for unnamed commands.
public HystrixCommandKey ( Type commandType ) : System
commandType System.Type The type of the command.
return System
        public HystrixCommandKey(Type commandType)
            : base(GetDefaultNameForCommandType(commandType))
        {
        }

Same methods

HystrixCommandKey::HystrixCommandKey ( string name ) : System