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

reactor.io.net.http.HttpClient Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2011-2015 Pivotal Software Inc, All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package reactor.io.net.http;

import reactor.Environment;
import reactor.core.Dispatcher;
import reactor.io.buffer.Buffer;
import reactor.io.codec.Codec;
import reactor.io.net.ReactorChannelHandler;
import reactor.io.net.ReactorClient;
import reactor.io.net.config.ClientSocketOptions;
import reactor.io.net.http.model.Method;
import reactor.rx.Promise;

/**
 * The base class for a Reactor-based Http client.
 *
 * @param   The type that will be received by this client
 * @param  The type that will be sent by this client
 * @author Jon Brisbin
 * @author Stephane Maldini
 */
public abstract class HttpClient
		extends ReactorClient> {

	protected HttpClient(Environment env,
	                     Dispatcher dispatcher,
	                     Codec codec,
	                     ClientSocketOptions options) {
		super(env, dispatcher, codec, options.prefetch());
	}

	/**
	 * HTTP GET the passed URL. When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param url the target remote URL
	 * @param handler the {@link ReactorChannelHandler} to invoke on open channel
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> get(String url,
	                                                         final ReactorChannelHandler>
			                                                         handler) {
		return request(Method.GET, url, handler);
	}


	/**
	 * HTTP GET the passed URL.
	 *
	 * @param url the target remote URL
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> get(String url) {

		return request(Method.GET, url, null);
	}

	/**
	 * HTTP POST the passed URL. When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param url the target remote URL
	 * @param handler the {@link ReactorChannelHandler} to invoke on open channel
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> post(String url,
	                                                          final ReactorChannelHandler>
			                                                          handler) {
		return request(Method.POST, url, handler);
	}


	/**
	 * HTTP PUT the passed URL. When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param url the target remote URL
	 * @param handler the {@link ReactorChannelHandler} to invoke on open channel
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> put(String url,
	                                                         final ReactorChannelHandler>
			                                                         handler) {
		return request(Method.PUT, url, handler);
	}

	/**
	 * HTTP DELETE the passed URL. When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param url the target remote URL
	 * @param handler the {@link ReactorChannelHandler} to invoke on open channel
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> delete(String url,
	                                                            final ReactorChannelHandler> handler) {
		return request(Method.DELETE, url, handler);
	}

	/**
	 * HTTP DELETE the passed URL. When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param url the target remote URL
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> delete(String url) {
		return request(Method.DELETE, url, null);
	}

	/**
	 * WebSocket to the passed URL.
	 *
	 * @param url the target remote URL
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> ws(String url) {
		return request(Method.WS, url, null);
	}

	/**
	 * WebSocket to the passed URL. When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param url the target remote URL
	 * @param handler the {@link ReactorChannelHandler} to invoke on open channel
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public final Promise> ws(String url,
	                                                         final ReactorChannelHandler>
			                                                         handler) {
		return request(Method.WS, url, handler);
	}

	/**
	 * Use the passed HTTP method to send to the given URL.
	 * When connection has been made, the passed handler is invoked and can be used to build
	 *  precisely the request and write data to it.
	 *
	 * @param method the HTTP method to send
	 * @param url the target remote URL
	 * @param handler the {@link ReactorChannelHandler} to invoke on open channel
	 *
	 * @return a {@link Promise} of the {@link HttpChannel} ready to consume for response
	 */
	public abstract Promise> request(Method method, String url,
	                                                                final ReactorChannelHandler> handler);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy