# GetSpoolTime

### void GetSpoolTime(ref string pstrStartTime, ref string pstrFullTime)

EZGemPlus의 스풀(Spool) 기능이 활성화되었을 때, 스풀링이 시작된 시간과 스풀 큐가 가득 찬(Full) 시간을 조회합니다. 통신 단절 시점과 데이터 오버플로우 시점을 파악하는 데 사용됩니다.

Parameters

<table data-header-hidden><thead><tr><th width="197" valign="top"></th><th width="136" valign="top"></th><th valign="top"></th></tr></thead><tbody><tr><td valign="top">Name</td><td valign="top">Type</td><td valign="top">Description</td></tr><tr><td valign="top">pstrStartTime</td><td valign="top">ref string</td><td valign="top">Spool 기능이 시작된 시간 (hhmmss)</td></tr><tr><td valign="top">pstrFullTIme</td><td valign="top">ref string</td><td valign="top">Spool이 Full 된 시간 (hhmmss)</td></tr></tbody></table>

```csharp
    string startTime = "";
    string fullTime = "";

    // 스풀 관련 시간 정보 조회
    m_gem.GetSpoolTime(ref startTime, ref fullTime);

    if (!string.IsNullOrEmpty(startTime))
    {
        Console.WriteLine($"스풀링 시작 시간: {startTime}");
    }
    else
    {
        Console.WriteLine("현재 스풀링이 진행 중이 아니거나 기록된 시작 시간이 없습니다.");
    }

    if (!string.IsNullOrEmpty(fullTime))
    {
        Console.WriteLine($"스풀 큐 가득 찬 시간: {fullTime}");
        Console.WriteLine("주의: 스풀 큐가 가득 차서 이전 데이터가 덮어쓰여졌을 수 있습니다.");
    }
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nviasoft.gitbook.io/nviasoft-docs/api-reference/spool/getspooltime.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
