Package org.cytoscape.io.read
Interface CySessionReader
-
- All Superinterfaces:
Task
public interface CySessionReader extends Task
An extension of the Task interface that returns aorg.cytoscape.property.session.Cysessionobject. The reader does nothing beyond create theorg.cytoscape.property.session.Cysessionobject and does NOT use theorg.cytoscape.property.session.Cysessionobject to define the state of Cytoscape - that is managed by the CySessionManager. Instances of this interface are created byInputStreamTaskFactoryobjects registered as OSGi services, which are in turn processed by associated reader manager objects that distinguish InputStreamTaskFactories based on theDataCategoryassociated with theCyFileFilter.Module:
io-apiTo use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>io-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CySessiongetSession()Returns aCySessionobject
-