1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 16:53:23 +00:00

events processor web job project

This commit is contained in:
Kyle Spearrin
2017-12-08 15:02:54 -05:00
parent f02679f609
commit 8626d7e769
8 changed files with 261 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
namespace Bit.EventsProcessor
{
public class Functions
{
public async static Task ProcessQueueMessageAsync(
[QueueTrigger("event")] string message, TextWriter logger, CancellationToken token)
{
await logger.WriteLineAsync(message);
}
}
}