Hi,

I have a JsonGenerator and FilteringGeneratorDelegate usage as follows:

ByteArrayOutputStream outputStream = threadLocalOutputStreamRef.get();
try (JsonGenerator jsonGenerator = jsonFactory.createGenerator(outputStream)) {
    try (JsonGenerator jsonGeneratorDelegate = new 
FilteringGeneratorDelegate(jsonGenerator, tokenFilter, true, true)) {
        // ...
    }
}

Is it possible to reuse JsonGenerator and FilteringGeneratorDelegate instances 
in a way attached to the local thread context?

Best.

-- 
You received this message because you are subscribed to the Google Groups 
"jackson-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to