Examples of DBFileMetaDataSet


Examples of org.xtreemfs.babudb.replication.service.logic.LoadLogic.DBFileMetaDataSet

                            md = response.getDbFileMetadatas(i);
                       
                        c.add(new DBFileMetaData(md.getFileName(), md.getFileSize()));
                    }
                   
                    return new DBFileMetaDataSet(response.getMaxChunkSize(), c);
                }
            };
        } catch (final IOException e) {
            return new ClientResponseFuture<DBFileMetaDataSet, DBFileMetaDatas>(null) {
               
View Full Code Here

Examples of org.xtreemfs.babudb.replication.service.logic.LoadLogic.DBFileMetaDataSet

    /**
     * @throws Exception
     */
    @Test
    public void testLoadRequest() throws Exception {
        DBFileMetaDataSet result = client.load(lastOnView.get()).get();
        assertTrue(result.size() == 0);
       
        result = client.load(testLSN).get();
       
        assertEquals(1, result.size());
        assertEquals(conf0.getBaseDir() + conf0.getDbCfgFile(), result.get(0).file);
        assertEquals(0L, result.get(0).size);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.