Package gettasky.storage.mongodb

Examples of gettasky.storage.mongodb.MongoTaskStorage


    public static TaskStorage getTaskStorage()
    {
        if (taskStorageInstance == null)
        {
            // Eventually the storage mechanism would be configurable, rather than hard-coded.
            taskStorageInstance = new MongoTaskStorage();
        }
        return taskStorageInstance;
    }
View Full Code Here

TOP

Related Classes of gettasky.storage.mongodb.MongoTaskStorage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.