Skip to content

Commit

Permalink
Add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-japatel committed Oct 26, 2023
1 parent 4c544e0 commit 84e089d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** Class to deserialize a request from a channel status request */
/**
* Class to deserialize a request from a channel status request Please keep this upto date with
* {@link net.snowflake.ingest.streaming.internal.ChannelsStatusRequest}
*/
class ChannelExistenceCheckerRequest {

// Used to deserialize a channel request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** Class used to serialize a response for the channels status endpoint */
/**
* Class used to serialize a response for the channels status endpoint. Please keep this upto date
* with {@link net.snowflake.ingest.streaming.internal.ChannelsStatusResponse}
*/
public class ChannelExistenceCheckerResponse {
static class ChannelStatusResponseDTO {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import org.junit.Before;
import org.junit.Test;

/** IT test related to ChannelExistenceCheckerRequest which Makes server side Calls */
public class StreamingChannelExistenceCheckerTestIT {

private SnowflakeConnectionService conn = TestUtils.getConnectionServiceForStreaming();
Expand Down

0 comments on commit 84e089d

Please sign in to comment.