blob: 8f99500c3a4e31f93d0b42bb2a8d760b609a4b7b [file] [log] [blame]
/**
* Copyright (c) 2018 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.client.subscribe.standard;
import org.eclipse.sensinact.studio.http.client.snamessage.MsgSensinact;
import org.eclipse.sensinact.studio.model.resource.utils.ResourceDescriptor;
/**
* @author Etienne Gandrille
*/
public interface SubscriptionListener {
public void onEvent(final MsgSensinact message, final ResourceDescriptor resource);
}