Skip to content

Instantly share code, notes, and snippets.

@thombergs
Created October 17, 2017 18:55
Show Gist options
  • Save thombergs/c6fab0cd7d56f33be91b4f82f7923c9e to your computer and use it in GitHub Desktop.
Save thombergs/c6fab0cd7d56f33be91b4f82f7923c9e to your computer and use it in GitHub Desktop.
public class ConnectionChecker {
private String uri;
public ConnectionChecker(String uri){
this.uri = uri;
}
public boolean connect() {
... // try to connect to the uri
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment