Skip to content

Instantly share code, notes, and snippets.

@yuka1984
Created October 27, 2017 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuka1984/3ebbcf37be9dfebff5054d2afa07321a to your computer and use it in GitHub Desktop.
Save yuka1984/3ebbcf37be9dfebff5054d2afa07321a to your computer and use it in GitHub Desktop.
public Task<IListener> CreateListenerAsync(ListenerFactoryContext context)
{
var attribute = GetResolvedAttribute<SlackMessageTriggerAttribute>(_parameter);
return Task.FromResult<IListener>(new SlackMessageListener(context.Executor, attribute);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment