com.joseflavio.copaiba.CopaibaRecepcao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of copaiba Show documentation
Show all versions of copaiba Show documentation
Programação em tempo de execução remota.
The newest version!
/*
* Copyright (C) 2016-2020 José Flávio de Souza Dias Júnior
*
* This file is part of Copaíba - .
*
* Copaíba is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Copaíba is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Copaíba. If not, see .
*/
/*
* Direitos Autorais Reservados (C) 2016-2020 José Flávio de Souza Dias Júnior
*
* Este arquivo é parte de Copaíba - .
*
* Copaíba é software livre: você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Menos Geral GNU conforme publicada pela
* Free Software Foundation, tanto a versão 3 da Licença, como
* (a seu critério) qualquer versão posterior.
*
* Copaíba é distribuído na expectativa de que seja útil,
* porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita de
* COMERCIABILIDADE ou ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a
* Licença Pública Menos Geral do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Menos Geral do GNU
* junto com Copaíba. Se não, veja .
*/
package com.joseflavio.copaiba;
/**
* Recepção de eventos de {@link Copaiba}.
*
* @author José Flávio de Souza Dias Júnior
*/
public interface CopaibaRecepcao {
/**
* {@link Copaiba} pronta para receber {@link CopaibaConexao conexões}.
* Espera-se que o comportamente deste método seja o mais breve possível.
*/
void pronta( Copaiba copaiba );
}