
Tibco::Rv::Status - status code

my ( $status ) =
new Tibco::Rv::Status( status => Tibco::Rv::INVALID_ARG );
$status = $msg->removeField( $fieldName, $fieldId );
print "returned: $status\n" if ( $status != Tibco::Rv::OK );

Wrapper class for status codes.

%args:
status => $status
Creates a Tibco::Rv::Status object with the given status. $status should be one of the Tibco::Rv Status Constants, or an equivalent numeric value.

Returns a descriptive string of $status. Or, simply use $status in a string context.
Returns the numeric value of $status. Or, simply use $status in a numeric context.

Paul Sturm <sturm@branewave.com>