Skip navigation links
JNA API 4.5.2
com.sun.jna.platform.win32

Class Winsvc.SERVICE_FAILURE_ACTIONS_FLAG

  • Enclosing interface:
    Winsvc


    public static class Winsvc.SERVICE_FAILURE_ACTIONS_FLAG
    extends Winsvc.ChangeServiceConfig2Info
    Contains the failure actions flag setting of a service. This setting determines when failure actions are to be executed.
    • Field Detail

      • fFailureActionsOnNonCrashFailures

        public int fFailureActionsOnNonCrashFailures
        If this member is TRUE and the service has configured failure actions, the failure actions are queued if the service process terminates without reporting a status of SERVICE_STOPPED or if it enters the SERVICE_STOPPED state but the dwWin32ExitCode member of the SERVICE_STATUS structure is not ERROR_SUCCESS (0). If this member is FALSE and the service has configured failure actions, the failure actions are queued only if the service terminates without reporting a status of SERVICE_STOPPED. This setting is ignored unless the service has configured failure actions. For information on configuring failure actions, see ChangeServiceConfig2.
      • FIELDS

        public static final java.util.List<java.lang.String> FIELDS
    • Constructor Detail

      • SERVICE_FAILURE_ACTIONS_FLAG

        public SERVICE_FAILURE_ACTIONS_FLAG()
      • SERVICE_FAILURE_ACTIONS_FLAG

        public SERVICE_FAILURE_ACTIONS_FLAG(Pointer p)
    • Method Detail

      • getFieldOrder

        protected java.util.List getFieldOrder()
        Description copied from class: Structure
        Return this Structure's field names in their proper order. For example,
        
         protected List getFieldOrder() {
             return Arrays.asList(new String[] { ... });
         }
         
        IMPORTANT When deriving from an existing Structure subclass, ensure that you augment the list provided by the superclass, e.g.
        
         protected List getFieldOrder() {
             List fields = new ArrayList(super.getFieldOrder());
             fields.addAll(Arrays.asList(new String[] { ... }));
             return fields;
         }
         
        Field order must be explicitly indicated, since the field order as returned by Class.getFields() is not guaranteed to be predictable.
        Specified by:
        getFieldOrder in class Structure
        Returns:
        ordered list of field names
JNA API 4.5.2

Copyright © 2007-2017 Timothy Wall. All Rights Reserved.