This iteration now stores headers locally and fetches them first before going to the network. Work done in the database to deal with IMAPisms. More work on the GMime bindings (couple of mistakes in prior commit).
21 lines
671 B
Vala
21 lines
671 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 class Geary.Sqlite.ImapMessageLocationPropertiesRow : Geary.Sqlite.Row {
|
|
public int64 id { get; private set; }
|
|
public int64 location_id { get; private set; }
|
|
public int64 uid { get; private set; }
|
|
|
|
public ImapMessageLocationPropertiesRow(ImapMessageLocationPropertiesTable table, int64 id,
|
|
int64 location_id, int64 uid) {
|
|
base (table);
|
|
|
|
this.id = id;
|
|
this.location_id = location_id;
|
|
this.uid = uid;
|
|
}
|
|
}
|
|
|