ffmpeg-kit icon indicating copy to clipboard operation
ffmpeg-kit copied to clipboard

Add clearCompletedSessions please:

Open renetik opened this issue 2 months ago • 0 comments

 static void clearCompletedSessions() {
        synchronized (sessionHistoryLock) {
            ArrayList<Session> completedSessions = new ArrayList<>();
            for (Session session : sessionHistoryList) {
                if (session.getState() == COMPLETED) completedSessions.add(session);
            }
            for (Session session : completedSessions) {
                sessionHistoryMap.remove(session.getSessionId());
                sessionHistoryList.remove(session);
            }
        }
    }

Please .. ;)

renetik avatar May 19 '24 15:05 renetik