geary/src/engine/api/geary-remote-interfaces.vala
Jim Nelson 0273b78005 Folder heirarchies: #3788
Now supporting folder heirarchies.  The client will now descend looking for subfolders.  This task now opens up multiple outstanding requests to the Engine as well as exercises the database schema.

Closing this ticket opens the door to finishing #3692.
2011-07-01 15:40:20 -07:00

14 lines
451 B
Vala

/* Copyright 2011 Yorba Foundation
*
* This software is licensed under the GNU Lesser General Public License
* (version 2.1 or later). See the COPYING file in this distribution.
*/
public interface Geary.RemoteAccount : Object, Geary.Account {
public abstract async string? get_folder_delimiter_async(string toplevel,
Cancellable? cancellable = null) throws Error;
}
public interface Geary.RemoteFolder : Object, Geary.Folder {
}