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

org.luaj.vm.DebugNetSupport Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.luaj.vm;

import java.io.IOException;

public interface DebugNetSupport {

    /**
     * Starts the networking for debug support.
     * @throws IOException
     */
    public abstract void start() throws IOException;

    /**
     * Shuts down the networking for the debug support.
     */
    public abstract void stop();

    /**
     * Disconnect all connected clients.
     */
    public abstract void disconnect();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy