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

Class W32Service

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable


    public class W32Service
    extends java.lang.Object
    implements java.io.Closeable
    Win32 Service wrapper
    Author:
    EugineLev
    • Constructor Detail

      • W32Service

        public W32Service(Winsvc.SC_HANDLE handle)
        Win32 Service
        Parameters:
        handle - A handle to the service. This handle is returned by the CreateService or OpenService function, and it must have the SERVICE_QUERY_STATUS access right.
    • Method Detail

      • close

        public void close()
        Close service.
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in interface java.lang.AutoCloseable
      • setFailureActions

        public void setFailureActions(java.util.List<Winsvc.SC_ACTION> actions,
                                      int resetPeriod,
                                      java.lang.String rebootMsg,
                                      java.lang.String command)
        Set the failure actions of the specified service. Corresponds to ChangeServiceConfig2 with parameter dwInfoLevel set to SERVICE_CONFIG_FAILURE_ACTIONS.
      • setFailureActionsFlag

        public void setFailureActionsFlag(boolean flagValue)
        Set the failure action flag of the specified service. Corresponds to ChangeServiceConfig2 with parameter dwInfoLevel set to SERVICE_CONFIG_FAILURE_ACTIONS_FLAG.
      • getFailureActionsFlag

        public boolean getFailureActionsFlag()
        Get the failure actions flag of the specified service. Corresponds to QueryServiceConfig2 with parameter dwInfoLevel set to SERVICE_CONFIG_FAILURE_ACTIONS_FLAG.
      • queryStatus

        public Winsvc.SERVICE_STATUS_PROCESS queryStatus()
        Retrieves the current status of the specified service based on the specified information level.
        Returns:
        Service status information
      • startService

        public void startService()
      • stopService

        public void stopService()
        Stop service.
      • stopService

        public void stopService(long timeout)
        Stop service.
        Parameters:
        timeout - timeout in ms until the service must report to be stopped
      • continueService

        public void continueService()
        Continue service.
      • pauseService

        public void pauseService()
        Pause service.
      • sanitizeWaitTime

        int sanitizeWaitTime(int dwWaitHint)
        do not wait longer than the wait hint. A good interval is one-tenth the wait hint, but no less than 1 second and no more than 10 seconds.
      • waitForNonPendingState

        public void waitForNonPendingState()
        Wait for the state to change to something other than a pending state.
      • getHandle

        public Winsvc.SC_HANDLE getHandle()
        Gets the service handle.
        Returns:
        Returns the service handle.
JNA API 5.10.0

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