Skip to content

.NET Core 2.2 OpenWhisk Runtime v1.14.0

Compare
Choose a tag to compare
@dgrove-oss dgrove-oss released this 07 Jan 19:21
· 36 commits to master since this release
[email protected]
a9b70ca

Changes since 1.13.0

  • Support for async methods. Example:
        public async Task<JObject> MainAsync(JObject args)
        {
            await Task.Delay(10); // Just do a delay to have an async/await process occur.
            return (args);
        }