You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Socket#handshake 안에는 다음과 같은 속성들이 들어있다. socket.io 문서
{
headers: /* the headers of the initial request */
query: /* the query params of the initial request */
auth: /* the authentication payload */
time: /* the date of creation (as string) */
issued: /* the date of creation (unix timestamp) */
url: /* the request URL string */
address: /* the ip of the client */
xdomain: /* whether the connection is cross-domain */
secure: /* whether the connection is secure */
}
이때 issued 속성을 사용하면 milliseconds 단위의 시간을 알아낼 수 있다. 이 점을 착안하여 클라이언트들의 이벤트 이슈 발행시간과 도착시간을 비교하면 지연시간을 계산할 수 있지 않을까?
The text was updated successfully, but these errors were encountered:
Socket#handshake
안에는 다음과 같은 속성들이 들어있다. socket.io 문서이때
issued
속성을 사용하면 milliseconds 단위의 시간을 알아낼 수 있다. 이 점을 착안하여 클라이언트들의 이벤트 이슈 발행시간과 도착시간을 비교하면 지연시간을 계산할 수 있지 않을까?The text was updated successfully, but these errors were encountered: