/*
XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012-2017 gnosygnu@gmail.com
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
or alternatively under the terms of the Apache License Version 2.0.
You may use XOWA according to either of these licenses as is most appropriate
for your project on a case-by-case basis.
The terms of each license can be found in the source code repository:
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
*/
package gplx.xowa.addons.bldrs.exports.splits; import gplx.*; import gplx.xowa.*; import gplx.xowa.addons.*; import gplx.xowa.addons.bldrs.*; import gplx.xowa.addons.bldrs.exports.*;
import gplx.dbs.*; import gplx.xowa.wikis.data.tbls.*; import gplx.xowa.addons.bldrs.exports.splits.rslts.*;
public interface Split_wkr {
void Split__init (Split_ctx ctx, Xow_wiki wiki, Db_conn wkr_conn);
void Split__pages_loaded (Split_ctx ctx, int ns_id, int score_bgn, int score_end);
void Split__trg__1st__new (Split_ctx ctx, Db_conn trg_conn);
void Split__trg__nth__new (Split_ctx ctx, Db_conn trg_conn);
void Split__trg__nth__rls (Split_ctx ctx, Db_conn trg_conn);
void Split__exec (Split_ctx ctx, Split_rslt_mgr rslt_mgr, Xowd_page_itm page, int page_id);
void Split__term (Split_ctx ctx);
}