INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Thread"
project: "Visual Eiffel Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: emthread
deferred class EMT_THREAD
feature -- Access

frozen start, frozen resume
-- Starts or resumes thread execution

frozen exit (exit_code: INTEGER)
-- Exits thread with the specified exit code

frozen suspend
-- Suspends thread execution

frozen sleep (milliseconds: INTEGER)
-- Suspends thread for the specified amount of milliseconds

frozen thread_handle: INTEGER
-- Returns low-level thread handle
invariant

initialized: internal_handle /= 0
end -- class EMT_THREAD

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES