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

com.iteaj.iot.client.http.HttpProtocolHandler Maven / Gradle / Ivy

The newest version!
package com.iteaj.iot.client.http;

import com.iteaj.iot.FreeProtocolHandle;

public interface HttpProtocolHandler extends FreeProtocolHandle {

    @Override
    default Object handle(T protocol) {
        this.doHandle(protocol);
        return null;
    }

    void doHandle(T protocol);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy