TheOpenCloudEngine / uEngine5-base

uEngine5 BPMS that totally re-written in Microservices architecture. uEngine5 can act as not only a conventional Workflow or BPMS but also as a REST api orchestrator or a BPaaS (Business process as a service) of members of OCE's MSA components.
MIT License
10 stars 13 forks source link

인스턴스 액션 처리 #79

Open jinyoung opened 6 years ago

jinyoung commented 6 years ago

인스턴스 멈춤, 재시작, 완료처리

액션은 hateoas 로 잘 정의 되어있음:

        "stop": {
            "href": "http://localhost:8080/instance/1/stop"
        }, 
        "suspend": {
            "href": "http://localhost:8080/instance/1/suspend"
        }, 

suspend 된 상태에선

        "stop": {
            "href": "http://localhost:8080/instance/1/stop"
        }, 
        "resume": {
            "href": "http://localhost:8080/instance/1/resume"
        },