Demonstration of how ipcpipelinesink & ipcpipelinesrc can be used together.
I am not sure how to do this, if you know how please provide an example as I would love know to do this without writing a custom bin.
__pycache__ |
import org.apache.logging.log4j.core.config.plugins.Plugin; | |
import org.apache.logging.log4j.core.config.plugins.PluginAttribute; | |
import org.apache.logging.log4j.core.config.plugins.PluginFactory; | |
// Register the plugin to allow it to be used later | |
@Plugin(name = "DebounceFilter", category = "Core", elementType = "filter", printObject = true) | |
public class DebounceFilterPlugin extends DebounceFilter { | |
// Factory method for creating the filter from configuration | |
@PluginFactory |
#!/bin/bash | |
## | |
# set-up a webOS device with homebrew channel | |
## | |
# Created because I found the steps were somewhat fragmented, probably out of date. | |
## | |
# requires ares-cli | |
# install via: npm install -g @webos-tools/cli | |
# ref: https://webostv.developer.lge.com/develop/tools/cli-installation | |
## |
http { | |
lua_shared_dict cache_key_store 10m; | |
server { | |
location / { | |
# Read the request body | |
content_by_lua_block { | |
ngx.req.read_body() | |
local body = ngx.req.get_body_data() |
Demonstration of how ipcpipelinesink & ipcpipelinesrc can be used together.
I am not sure how to do this, if you know how please provide an example as I would love know to do this without writing a custom bin.