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/AbstractCodec.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ public Class<?> type() {
98
98
/**
99
99
* Create a {@link Parameter}.
100
100
*
101
-
* @param type the type OID
101
+
* @param type the well-known {@link PostgresqlObjectId type OID}
102
102
* @param format the format to use
103
103
* @param value {@link Publisher} emitting {@link ByteBuf buffers}. Make sure to use deferred buffer creation instead of {@link Mono#just(Object)} and {@link Flux#just(Object)} to avoid memory
104
104
* leaks
@@ -111,7 +111,7 @@ static Parameter create(PostgresqlObjectId type, Format format, Publisher<? exte
111
111
/**
112
112
* Create a {@link Parameter}.
113
113
*
114
-
* @param type the type OID
114
+
* @param type the well-known {@link PostgresqlObjectId type OID}
@@ -77,12 +78,12 @@ boolean doCanDecode(PostgresqlObjectId type, Format format) {
77
78
/**
78
79
* Decode {@code buffer} to {@link Number} and potentially convert it to {@link Class expectedType} using {@link Function converter} if the decoded type does not match {@code expectedType}.
79
80
*
80
-
* @param buffer
81
-
* @param dataType
82
-
* @param format
83
-
* @param expectedType
84
-
* @param converter
85
-
* @return
81
+
* @param buffer the data buffer
82
+
* @param dataType the well-known {@link PostgresqlObjectId type OID}
83
+
* @param format the data type {@link Format}, text or binary
84
+
* @param expectedType the expected result type
85
+
* @param converter the converter function to convert from {@link Number} to {@code expectedType}
0 commit comments