cascading.provider
Interface CascadingFactory<Instance>

All Known Subinterfaces:
TupleCollectionFactory, TupleMapFactory
All Known Implementing Classes:
HadoopTupleCollectionFactory, HadoopTupleMapFactory

public interface CascadingFactory<Instance>

Interface CascadingFactory defines a pluggable "factory" class that can be loaded by the FactoryLoader utility. Factory instances are created process side (in a cluster for example) to augment any of the internal strategies.

See Also:
FactoryLoader

Method Summary
 Instance create(FlowProcess flowProcess)
          Method create will return a new instance of the type create by this factory.
 void initialize(FlowProcess flowProcess)
          Method initialize will configure an initialize this factory instance.
 

Method Detail

initialize

void initialize(FlowProcess flowProcess)
Method initialize will configure an initialize this factory instance.

Parameters:
flowProcess - of type FlowProcess

create

Instance create(FlowProcess flowProcess)
Method create will return a new instance of the type create by this factory.

Parameters:
flowProcess - of type FlowProcess
Returns:
of type Instance


Copyright © 2007-2011 Concurrent, Inc. All Rights Reserved.