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

com.yahoo.jdisc.service.AbstractClientProvider Maven / Gradle / Ivy

// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.service;

import com.yahoo.jdisc.Request;
import com.yahoo.jdisc.handler.AbstractRequestHandler;
import com.yahoo.jdisc.handler.ResponseHandler;

/**
 * 

This is a convenient parent class for {@link ClientProvider} with default implementations for all but the * essential {@link #handleRequest(Request, ResponseHandler)} method.

* * @author Simon Thoresen Hult */ public abstract class AbstractClientProvider extends AbstractRequestHandler implements ClientProvider { @Override public void start() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy