This project has retired. For details please refer to its
Attic page .
ReadableSource (Apache Crunch 0.8.0 API)
org.apache.crunch.io
Interface ReadableSource<T>
All Superinterfaces: Source <T>
All Known Subinterfaces: ReadableSourceTarget <T>
public interface ReadableSource<T> extends Source <T>
An extension of the Source
interface that indicates that a
Source
instance may be read as a series of records by the client
code. This is used to determine whether a PCollection
instance can be
materialized.
read
Iterable <T > read (org.apache.hadoop.conf.Configuration conf)
throws IOException
Returns an Iterable
that contains the contents of this source.
Parameters: conf
- The current Configuration
instance
Returns: the contents of this Source
as an Iterable
instance
Throws:
IOException
asReadable
ReadableData <T > asReadable ()
Returns: a ReadableData
instance containing the data referenced by this
ReadableSource
.
Copyright © 2013 The Apache Software Foundation . All Rights Reserved.