Exemplo n.º 1
0
        public IPrioritizedProcessingGroup GetProcessingGroup(string transportId, string name, Action onFailure = null)
        {
            ResolvedTransport transport = resolveTransport(transportId);

            try
            {
                return(transport.GetProcessingGroup(transportId, name, onFailure));
            }
            catch (Exception e)
            {
                throw new TransportException(string.Format("Failed to create processing group {0} on transport {1}", name, transportId), e);
            }
        }