Echo3 3.0.beta4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Echo3 3.0.beta4 (Default branch)
# 1  
Old 01-29-2009
Echo3 3.0.beta4 (Default branch)

Image Echo3 is a framework for developing rich Web applications. From the developer's perspective, Echo3 behaves as a user interface toolkit, like Swing or Eclipse SWT. AJAX technology is employed to deliver a user experience to Web clients that approaches that of desktop-based applications. Echo3 applications can be created in either client-side JavaScript or server-side Java code using a component-oriented and event-driven API. License: Mozilla Public License (MPL) Changes:
This release focuses on fixing issues in preparation for the first release candidate. API specifications are now available for all of the client-side JavaScript as well as server-side Java APIs. JSLint'ing of JavaScript code was added to the build process. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
SbMutex(3)							       Coin								SbMutex(3)

NAME
SbMutex - A basic class for managing a mutex. This class provides a portable framework around the mutex interface of the underlying native thread-handling toolkit. SYNOPSIS
#include <Inventor/threads/SbMutex.h> Public Member Functions SbMutex (void) ~SbMutex () int lock (void) SbBool tryLock (void) int unlock (void) Detailed Description A basic class for managing a mutex. This class provides a portable framework around the mutex interface of the underlying native thread-handling toolkit. Constructor &; Destructor Documentation SbMutex::SbMutex (void) [inline] Constructor. SbMutex::~SbMutex () [inline] Destructor. Member Function Documentation int SbMutex::lock (void) [inline] This method locks the mutex. 0 is returned on success. If the mutex was previously unlocked, the thread will lock the mutex and continue running. If the mutex was already locked when this call is made, the thread will be suspended until the other thread holding the mutex releases it. This is a blocking operation. SbBool SbMutex::tryLock (void) [inline] This method tries to lock the mutex, and returns whether it was locked or not. This is a non-blocking operation. int SbMutex::unlock (void) [inline] This method unlocks the mutex. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SbMutex(3)