All Downloads are FREE. Search and download functionalities are using the official Maven repository.

exchange.apexpro.connector.impl.WebsocketRequest Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package exchange.apexpro.connector.impl;

import exchange.apexpro.connector.SubscriptionErrorHandler;
import exchange.apexpro.connector.SubscriptionListener;
import exchange.apexpro.connector.impl.utils.Handler;

class WebsocketRequest {

    WebsocketRequest(SubscriptionListener listener, SubscriptionErrorHandler errorHandler) {
        this.updateCallback = listener;
        this.errorHandler = errorHandler;
    }

    String name;
    Handler connectionHandler;
    Handler authHandler = null;
    final SubscriptionListener updateCallback;
    RestApiJsonParser jsonParser;
    final SubscriptionErrorHandler errorHandler;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy