Machine.Mta.InspectBusTypes.IsSagaConsumer C# (CSharp) Method

IsSagaConsumer() public method

public IsSagaConsumer ( Type type ) : bool
type System.Type
return bool
    public bool IsSagaConsumer(Type type)
    {
      return typeof(ISagaHandler).IsAssignableFrom(type);
    }
  }