// 
// Decompiled by Procyon v0.6.0
// 

package io.netty.channel.local;

import java.util.concurrent.ThreadFactory;
import io.netty.channel.MultiThreadIoEventLoopGroup;

@Deprecated
public class LocalEventLoopGroup extends MultiThreadIoEventLoopGroup
{
    public LocalEventLoopGroup() {
        this(0);
    }
    
    public LocalEventLoopGroup(final int nThreads) {
        this(nThreads, (ThreadFactory)null);
    }
    
    public LocalEventLoopGroup(final ThreadFactory threadFactory) {
        this(0, threadFactory);
    }
    
    public LocalEventLoopGroup(final int nThreads, final ThreadFactory threadFactory) {
        super(nThreads, threadFactory, LocalIoHandler.newFactory());
    }
}
