Package org.apache.storm.container.oci
Interface OciManifestToResourcesPluginInterface
- All Known Implementing Classes:
- HdfsManifestToResourcesPlugin
public interface OciManifestToResourcesPluginInterface
- 
Method SummaryModifier and TypeMethodDescriptiongetConfigResource(ImageManifest manifest) Get the image config information from the manifest.getLayerResources(ImageManifest manifest) Get the layers information from the manifest.voidInitialization.
- 
Method Details- 
initInitialization.- Parameters:
- conf- the storm conf
- Throws:
- IOException- on I/O exception
 
- 
getLayerResourcesGet the layers information from the manifest. The layers should be returned in the order in which they appear in the manifest- Parameters:
- manifest- the manifest of a image
- Returns:
- a list of layers information
- Throws:
- IOException- on I/O exception
 
- 
getConfigResourceGet the image config information from the manifest.- Parameters:
- manifest- the manifest of a image
- Returns:
- the config of this image
- Throws:
- IOException- on I/O exception
 
 
-