You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/io/r2dbc/postgresql/codec/DefaultCodecs.java
+21-7
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@
31
31
importjava.util.Collections;
32
32
importjava.util.Iterator;
33
33
importjava.util.List;
34
+
importjava.util.TimeZone;
34
35
importjava.util.concurrent.CopyOnWriteArrayList;
35
36
importjava.util.function.Function;
36
37
@@ -63,33 +64,46 @@ public DefaultCodecs(ByteBufAllocator byteBufAllocator) {
63
64
* @param preferAttachedBuffers whether to prefer attached (pooled) {@link ByteBuf buffers}. Use {@code false} (default) to use detached buffers which minimize the risk of memory leaks.
* @param byteBufAllocator the {@link ByteBufAllocator} to use for encoding
73
74
* @param preferAttachedBuffers whether to prefer attached (pooled) {@link ByteBuf buffers}. Use {@code false} (default) to use detached buffers which minimize the risk of memory leaks.
75
+
* @param configuration the {@link CodecConfiguration} to use for encoding/decoding
* @param byteBufAllocator the {@link ByteBufAllocator} to use for encoding
85
+
* @param configuration the {@link CodecConfiguration} to use for encoding/decoding
86
+
* @param preferAttachedBuffers whether to prefer attached (pooled) {@link ByteBuf buffers}. Use {@code false} (default) to use detached buffers which minimize the risk of memory leaks.
74
87
* @param codecLookupFunction provides the {@link CodecLookup} to use for finding relevant codecs
0 commit comments