Package com.sun.jna.platform.win32
Class Winsvc.SERVICE_FAILURE_ACTIONS
- java.lang.Object
- 
- com.sun.jna.Structure
- 
- com.sun.jna.platform.win32.Winsvc.ChangeServiceConfig2Info
- 
- com.sun.jna.platform.win32.Winsvc.SERVICE_FAILURE_ACTIONS
 
 
 
- 
- Direct Known Subclasses:
- Winsvc.SERVICE_FAILURE_ACTIONS.ByReference
 - Enclosing interface:
- Winsvc
 
 @FieldOrder({"dwResetPeriod","lpRebootMsg","lpCommand","cActions","lpsaActions"}) public static class Winsvc.SERVICE_FAILURE_ACTIONS extends Winsvc.ChangeServiceConfig2Info Represents the action the service controller should take on each failure of a service. A service is considered failed when it terminates without reporting a status of SERVICE_STOPPED to the service controller. To configure additional circumstances under which the failure actions are to be executed, see SERVICE_FAILURE_ACTIONS_FLAG.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classWinsvc.SERVICE_FAILURE_ACTIONS.ByReference- 
Nested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByValue, Structure.FieldOrder, Structure.StructField
 
- 
 - 
Field SummaryFields Modifier and Type Field Description intcActionsThe number of elements in the lpsaActions array.intdwResetPeriodThe time after which to reset the failure count to zero if there are no failures, in seconds.java.lang.StringlpCommandThe command line of the process for the CreateProcess function to execute in response to the SC_ACTION_RUN_COMMAND service controller action.java.lang.StringlpRebootMsgThe message to be broadcast to server users before rebooting in response to the SC_ACTION_REBOOT service controller action.Winsvc.SC_ACTION.ByReferencelpsaActionsA pointer to an array of SC_ACTION structures.- 
Fields inherited from class com.sun.jna.StructureALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
 
- 
 - 
Constructor SummaryConstructors Constructor Description SERVICE_FAILURE_ACTIONS()SERVICE_FAILURE_ACTIONS(Pointer p)
 - 
Method Summary- 
Methods inherited from class com.sun.jna.StructureallocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFieldOrder, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
 
- 
 
- 
- 
- 
Field Detail- 
dwResetPeriodpublic int dwResetPeriod The time after which to reset the failure count to zero if there are no failures, in seconds. Specify INFINITE to indicate that this value should never be reset.
 - 
lpRebootMsgpublic java.lang.String lpRebootMsg The message to be broadcast to server users before rebooting in response to the SC_ACTION_REBOOT service controller action. If this value is NULL, the reboot message is unchanged. If the value is an empty string (""), the reboot message is deleted and no message is broadcast. This member can specify a localized string using the following format: "@[path]dllname,-strID" The string with identifier strID is loaded from dllname; the path is optional. For more information, see RegLoadMUIString. Windows Server 2003 and Windows XP: Localized strings are not supported until Windows Vista.
 - 
lpCommandpublic java.lang.String lpCommand The command line of the process for the CreateProcess function to execute in response to the SC_ACTION_RUN_COMMAND service controller action. This process runs under the same account as the service. If this value is NULL, the command is unchanged. If the value is an empty string (""), the command is deleted and no program is run when the service fails.
 - 
cActionspublic int cActions The number of elements in the lpsaActions array. If this value is 0, but lpsaActions is not NULL, the reset period and array of failure actions are deleted.
 - 
lpsaActionspublic Winsvc.SC_ACTION.ByReference lpsaActions A pointer to an array of SC_ACTION structures. If this value is NULL, the cActions and dwResetPeriod members are ignored.
 
- 
 - 
Constructor Detail- 
SERVICE_FAILURE_ACTIONSpublic SERVICE_FAILURE_ACTIONS() 
 - 
SERVICE_FAILURE_ACTIONSpublic SERVICE_FAILURE_ACTIONS(Pointer p) 
 
- 
 
-