org.apache.pig.builtin
Class CurrentTime
java.lang.Object
org.apache.pig.EvalFunc<org.joda.time.DateTime>
org.apache.pig.builtin.CurrentTime
public class CurrentTime
- extends EvalFunc<org.joda.time.DateTime>
Constructor Summary |
CurrentTime()
This is a default constructor for Pig reflection purposes. |
Method Summary |
org.joda.time.DateTime |
exec(Tuple input)
This callback method must be implemented by all subclasses. |
Methods inherited from class org.apache.pig.EvalFunc |
finish, getArgToFuncMapping, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, isAsynchronous, outputSchema, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CurrentTime
public CurrentTime()
- This is a default constructor for Pig reflection purposes. It should
never actually be used.
exec
public org.joda.time.DateTime exec(Tuple input)
throws IOException
- Description copied from class:
EvalFunc
- This callback method must be implemented by all subclasses. This
is the method that will be invoked on every Tuple of a given dataset.
Since the dataset may be divided up in a variety of ways the programmer
should not make assumptions about state that is maintained between
invocations of this method.
- Specified by:
exec
in class EvalFunc<org.joda.time.DateTime>
- Parameters:
input
- the Tuple to be processed.
- Returns:
- result, of type T.
- Throws:
IOException
Copyright © 2007-2012 The Apache Software Foundation