aboutsummaryrefslogtreecommitdiff
path: root/zenserver/compute/apply.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Compact binary package caching support (#9)Per Larsson2021-09-161-1/+1
|
* Fixed marshaling of outputs including sanity checks, loggingStefan Boberg2021-09-161-2/+20
|
* Fixed some unreferenced variable warnings (why don't we get these in sln ↵Stefan Boberg2021-09-161-10/+20
| | | | builds?). Also added size verification to certain payloads
* Added more context to missing chunk exceptionsStefan Boberg2021-09-151-3/+4
|
* Changed `std::exception` into `std::runtime_error` since `std::exception` ↵Stefan Boberg2021-09-151-4/+4
| | | | does not have a constructor which accepts a string argument in the standard (this appears to be an MSVC implementation thing)
* Changed logging implementationStefan Boberg2021-09-151-22/+22
| | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function
* Changed so more loggers go via the zen::loggers interfaceStefan Boberg2021-09-151-85/+1
|
* Updated function service to new package management APIStefan Boberg2021-09-141-21/+29
|
* HttpResponse enum -> HttpResponseCodeStefan Boberg2021-09-121-11/+11
| | | | Also removed initial CbPackage API HttpServer changes as I have decided to take a different approach
* Merge branch 'main' of https://github.com/EpicGames/zenStefan Boberg2021-09-061-1/+1
|\
| * Cleaned up log messageStefan Boberg2021-09-041-1/+1
| |
* | Changed so function service commits compressed buffersStefan Boberg2021-09-061-5/+7
|/
* Introduced support for compressed buffer attachmentsStefan Boberg2021-09-021-2/+2
|
* Format fix.Per Larsson2021-08-311-1/+1
|
* Basic implementation of function evaluationStefan Boberg2021-08-281-63/+290
|
* Implemented function propagationStefan Boberg2021-08-241-1/+56
|
* WIP interface for submitting workers/jobsStefan Boberg2021-08-241-3/+63
|
* WIP servicesStefan Boberg2021-08-201-4/+25
|
* Tactical checkin: function service stub - not yet in use!Stefan Boberg2021-08-191-0/+531