Remove database session

Is there any built in function that remove those db session in the table SSOSessions after the SSO Initiation?

SAMLController.SSOSessionStore = New DatabaseSSOSessionStore With {.SessionIDDelegate = New SessionIDDelegate(Function()
Return Guid.NewGuid().ToString(“N”)
End Function)}

DatabaseSSOSessionStore.DeleteExpired may be called to remove expired session data.
DatabaseSSOSessionStore.Delete may be called to remove a specific SSO session.
Neither of these is called from within our component and it’s left to the application to manage the database.
Another option would be to schedule a job to remove expired sessions.