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

com.zeroc.IceInternal.EventHandler Maven / Gradle / Ivy

Go to download

Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms

There is a newer version: 3.7.10
Show newest version
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

package com.zeroc.IceInternal;

public abstract class EventHandler
{
    //
    // Called when there's a message ready to be processed.
    //
    abstract public void message(ThreadPoolCurrent current);

    //
    // Called when the event handler is unregistered.
    //
    abstract public void finished(ThreadPoolCurrent current, boolean close);

    //
    // Get a textual representation of the event handler.
    //
    @Override
    abstract public String toString();

    //
    // Get the native information of the handler, this is used by the selector.
    //
    abstract public java.nio.channels.SelectableChannel fd();

    //
    // Set the ready callback
    //
    abstract public void setReadyCallback(ReadyCallback callback);

    public int _disabled = 0;
    public int _registered = 0;
    public int _ready = 0;
    public java.nio.channels.SelectionKey _key = null;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy