Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 879 Bytes

structure.md

File metadata and controls

25 lines (23 loc) · 879 Bytes

Structure Document

KOJSv6の構造のドキュメントです。
2023 June 17th Poporon Network

大まかな概要

コードの提出が行われた際のフロー

sequenceDiagram
    actor User
    participant Backend
    participant Agent
    participant Worker
    
    User->>Backend: コードの提出
    Backend->>Backend: コードの保存
    Agent -->> Backend: 実行タスクの定期所得
    Note right of Backend: デフォルトでは0.5sごとに取得します 
    Agent ->> Worker: 実行
    Worker -->> Agent: 実行結果
    Agent -->> Backend: 実行結果
    Backend ->> Backend: 採点(正誤判定)
Loading

詳しくはAgent, Workerのリポジトリをご覧ください.