com.github.signalr4j.client.PlatformComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalr4j Show documentation
Show all versions of signalr4j Show documentation
A java client library for accessing SignalR WebSocket endpoints.
/*
Copyright (c) Microsoft Open Technologies, Inc.
All Rights Reserved
See License.txt in the project root for license information.
*/
package com.github.signalr4j.client;
import com.github.signalr4j.client.http.HttpConnection;
public interface PlatformComponent {
/**
* Returns a platform-specific HttpConnection
*/
public HttpConnection createHttpConnection(Logger logger);
/**
* Returns a platform-specific Operating System name
*/
public String getOSName();
boolean useProxy();
String getProxyHost();
int getProxyPort();
}