Package org.jboss.netty.container.guice

Source Code of org.jboss.netty.container.guice.OioDatagramChannelFactoryProvider

/*
* Copyright 2009 Red Hat, Inc.
*
* Red Hat licenses this file to you 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 org.jboss.netty.container.guice;

import java.util.concurrent.Executor;

import org.jboss.netty.channel.socket.oio.OioDatagramChannelFactory;

import com.google.inject.Inject;
import com.google.inject.Provider;

/**
* A {@link Provider} that creates a new {@link OioDatagramChannelFactory}.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
* @version $Rev: 1685 $, $Date: 2009-08-28 16:15:49 +0900 (금, 28 8 2009) $
*/
public class OioDatagramChannelFactoryProvider extends
        AbstractChannelFactoryProvider<OioDatagramChannelFactory> {

    /**
     * Creates a new provider with the {@code executor} injected via the
     * {@link ChannelFactoryResource} annotation.
     */
    @Inject
    public OioDatagramChannelFactoryProvider(
            @ChannelFactoryResource Executor executor) {
        super(executor);
    }

    public OioDatagramChannelFactory get() {
        return new OioDatagramChannelFactory(executor);
    }
}
TOP

Related Classes of org.jboss.netty.container.guice.OioDatagramChannelFactoryProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.