Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Last active December 18, 2019 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save recursivecodes/7eb749e56786e772e2722f88ac3aa98b to your computer and use it in GitHub Desktop.
Save recursivecodes/7eb749e56786e772e2722f88ac3aa98b to your computer and use it in GitHub Desktop.
CompatibleProducer.java
public class CompatibleProducer {
    public void produce() {
        String authToken = System.getenv("AUTH_TOKEN");
        String tenancyName = System.getenv("TENANCY_NAME");
        String username = System.getenv("STREAMING_USERNAME");
        String streamPoolId = System.getenv("STREAM_POOL_ID");
        String topicName = System.getenv("TOPIC_NAME");
     }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment