Files
narya/src/java/com/threerings/media/tile/TileSetIDBroker.java
T
Michael Bayne 7ad2acca11 Bundles! Got all the tileset bundle stuff working and wrote some tests to
inrease my confidence in the use of the word "working".


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@635 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-11-21 02:42:16 +00:00

42 lines
1.6 KiB
Java

//
// $Id: TileSetIDBroker.java,v 1.2 2001/11/21 02:42:15 mdb Exp $
package com.threerings.media.tile;
import com.samskivert.io.PersistenceException;
/**
* Brokers tileset ids. The tileset repository interface makes available a
* collection of tilesets based on a unique identifier. The expectation is
* that a collection of tilesets will be used to populate a repository and
* in that population process, tileset ids will be assigned to the
* tilesets. The tileset id broker system provides a means by which named
* tilesets can be mapped consistently to a set of tileset ids. Humans can
* then be responsible for assigning unique names to the tilesets and the
* broker will ensure that those names map to unique ids that won't change
* if the repository is rebuilt from the source tilesets.
*/
public interface TileSetIDBroker
{
/**
* Returns the unique identifier for the named tileset. If no
* identifier has yet been assigned to the specified named tileset,
* one should be assigned and returned.
*
* @exception PersistenceException thrown if an error occurs
* communicating with the underlying persistence mechanism used to
* store the name to id mappings.
*/
public int getTileSetID (String tileSetName)
throws PersistenceException;
/**
* When the user of a tilset id broker is done obtaining tileset ids,
* it must call this method to give the tileset id broker an
* opportunity to flush any newly created tileset ids back to its
* persistent store.
*/
public void commit ()
throws PersistenceException;
}