blob: 3493a08b0fb25294dafe3e5f9c696a5d7f10ce2e [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* 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:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.generic.stream;
import org.eclipse.sensinact.gateway.generic.Task;
import org.eclipse.sensinact.gateway.generic.TaskTranslator;
/**
* Service dedicated to data stream transmission
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
public interface StreamTaskTranslator extends TaskTranslator {
public static final Task.RequestType REQUEST_TYPE = Task.RequestType.STREAM;
void send(String processorIdentifier, byte[] payload);
}