blob: 6e162b8771a8b87f892f672da3301b2e9f25a020 [file] [log] [blame]
/**
* Copyright (c) 2019 CEA.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA - initial API and implementation and/or initial documentation
*/
package org.eclipse.sensinact.studio.http.services.client.connectionmanager;
/**
* @author Etienne Gandrille
*/
public interface ConnectionListener {
void onConnect(String gatewayname);
void onDisconnect(String gatewayname);
}