Sign in

cashierdesk / dili-cashier · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • dili-cashier
  • ..
  • service
  • ILifeCycle.java
  • dili cashier project init
      7976759a
    huanggang authored
    2025-12-23 15:53:24 +0800  
    Browse Dir ยป
ILifeCycle.java 225 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.diligrp.cashier.shared.service;

public interface ILifeCycle 
{
	void start() throws Exception;
	
	void stop() throws Exception;
	
	boolean isRunning();
	
	boolean isStarted();
	
	String getState();
}