org.epics.gpclient.loc.LocalDataSourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gpclient-loc Show documentation
Show all versions of gpclient-loc Show documentation
Support for in-memory data source for the EPICS Generic Purpose Client.
/**
* Copyright information and license terms for this software can be
* found in the file LICENSE.TXT included with the distribution.
*/
package org.epics.gpclient.loc;
import org.epics.gpclient.datasource.DataSource;
import org.epics.gpclient.datasource.DataSourceProvider;
/**
* DataSourceProvider for local variables.
*
* @author carcassi
*/
public class LocalDataSourceProvider extends DataSourceProvider {
@Override
public String getName() {
return "loc";
}
@Override
public DataSource createInstance() {
return new LocalDataSource();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy