1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <meta http-equiv="Content-Style-Type" content="text/css" /> 6 <link rel="stylesheet" href="../../css/manpage.css" type="text/css" /> 7<title>Level</title> 8 </head> 9 <body> 10<h1><CODE>nn::Result::Level</CODE> Enumerated Type</h1> 11<h2>Syntax</h2> 12 <div class="section"> 13 <pre class="definition">#include <nn/Result.h> 14 15enum Level; 16</pre> 17 </div> 18<h2>Values</h2> 19 <div class="section"> 20 <table class="arguments"> 21 <thead> 22 <tr> 23<th>Value</th> 24<td>Description</td> 25 </tr> 26 </thead> 27 <tr> 28<th><CODE>LEVEL_INFO</CODE></th> 29<td>Success. Additional information exists.</td> 30 </tr> 31 <tr> 32<th><CODE>LEVEL_SUCCESS</CODE></th> 33<td>Success. No additional information.</td> 34 </tr> 35 <tr> 36<th><CODE>LEVEL_FATAL</CODE></th> 37<td>Fatal error at the system level. Recovery in the software is not possible. Transition to the sequence that directs the user to Customer Support.</td> 38 </tr> 39 <tr> 40<th><CODE>LEVEL_RESET</CODE></th> 41<td>Unexpected error. Best course of action is to transition to the reset sequence. It's not likely that reinitializing the module will lead to recovery, but it may be possible to recover by resetting.</td> 42 </tr> 43 <tr> 44<th><CODE>LEVEL_REINIT</CODE></th> 45<td>Error indicating that the module must be reinitialized.</td> 46 </tr> 47 <tr> 48<th><CODE>LEVEL_USAGE</CODE></th> 49<td>Programming error. This indicates a programming error that will always occur with the argument values that were specified, regardless of the particular internal state of the library.</td> 50 </tr> 51 <tr> 52<th><CODE>LEVEL_PERMANENT</CODE></th> 53<td>Permanent error. Retrying is not possible.</td> 54 </tr> 55 <tr> 56<th><CODE>LEVEL_TEMPORARY</CODE></th> 57<td>Temporary failure. Retrying immediately with the same argument values is possible. Retrying a comparatively few times should yield success.</td> 58 </tr> 59 <tr> 60<th><CODE>LEVEL_STATUS</CODE></th> 61<td>Expected failure.</td> 62 </tr> 63 <tr> 64<th><CODE>LEVEL_END</CODE></th> 65<td>This value is not used.</td> 66 </tr> 67 </table> </div> 68<h2>Description</h2> 69 <div class="section"> 70<p>Enumerated type that indicates the severity of errors.</p><p><STRONG>Bug:</STRONG>The enumerated type definitions will change in the future.</p><!-- write here --></div> 71<h2>Revision History</h2> 72 <div class="section"> 73 <dl class="history"> 74 <dt>2010/01/07</dt> 75<dd>Initial version.<br /> 76 </dd> 77 </dl> 78 </div> 79 <hr><p>CONFIDENTIAL</p></body> 80</html>