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

package com.hypixel.hytale.server.core.io.transport;

import io.netty.channel.ChannelFuture;
import java.net.InetSocketAddress;

public interface Transport
{
    TransportType getType();
    
    ChannelFuture bind(final InetSocketAddress p0) throws InterruptedException;
    
    void shutdown();
}
