Abacn commented on code in PR #31637: URL: https://github.com/apache/beam/pull/31637#discussion_r1644826376
########## sdks/java/io/solace/src/main/java/org/apache/beam/sdk/io/solace/data/Solace.java: ########## @@ -17,26 +17,26 @@ */ package org.apache.beam.sdk.io.solace.data; +import com.google.auto.value.AutoValue; +import com.solacesystems.jcsmp.BytesXMLMessage; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import org.apache.beam.sdk.schemas.AutoValueSchema; +import org.apache.beam.sdk.schemas.annotations.DefaultSchema; +import org.apache.beam.sdk.schemas.annotations.SchemaFieldNumber; +import org.apache.beam.vendor.grpc.v1p60p1.com.google.protobuf.ByteString; +import org.checkerframework.checker.nullness.qual.Nullable; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + /** - * A record to be written to a Solace topic. - * - * <p>You need to transform to {@link Solace.Record} to be able to write to Solace. For that, you - * can use the {@link Solace.Record.Builder} provided with this class. - * - * <p>For instance, to create a record, use the following code: - * - * <pre>{@code Review Comment: Is deleting this code snippet intended, (like it has moved to other places)? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org