Skip to content

Instantly share code, notes, and snippets.

View vicrdguez's full-sized avatar
🎯
Focusing

Víctor Reyes Rodríguez vicrdguez

🎯
Focusing
View GitHub Profile
@vicrdguez
vicrdguez / vscode-whichkey-configs
Last active March 22, 2021 14:57
vscode-whichkey-configs
"whichkey.sortOrder": "alphabetically",
"whichkey.delay": 0,
"whichkey.bindings": [
{
"key": ";",
"name": "commands",
"type": "command",
"command": "workbench.action.showCommands"
},
{
@vicrdguez
vicrdguez / gist:e462453018acc1e46e156a652bad9df6
Created June 11, 2020 08:23
Create a KStream array instance
KStream<String, String>[] result = (KStream<String, String>[]) Array.newInstance(KStream.class, 2);
result[0] = stream1;
result[1] = stream2;
@vicrdguez
vicrdguez / KafkaTransformer.java
Last active May 26, 2020 15:50
A kafka transformer to perform timeout comprobations of any duration based on event time
package com.test.kafka.transformer;
import lombok.extern.slf4j.Slf4j;
import org.apache.kafka.streams.KeyValue;
import org.apache.kafka.streams.kstream.KStream;
import org.apache.kafka.streams.kstream.Transformer;
import org.apache.kafka.streams.kstream.TransformerSupplier;
import org.apache.kafka.streams.processor.*;
import org.apache.kafka.streams.state.KeyValueStore;