summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/MultiGetJobSignals.java
blob: 1a95cada87ec17777b348510aa923862281572fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;

public interface MultiGetJobSignals {
	/**	
		 Data from the slave has arrived.
			@param id the id of the request
			@param data data received from the slave.
		 End of data (EOD) has been reached if data.size() == 0
		         		@short    Data from the slave has arrived.
	*/
	void data(long id, byte[] data);
	/**	
		 Mimetype determined
			@param id the id of the request
			@param type the mime type
		         		@short    Mimetype determined
	*/
	void mimetype(long id, String type);
	/**	
		 File transfer completed.
			 When all files have been processed, result(TDEIO.Job ) gets
		 emitted.
			@param id the id of the request
		         		@short    File transfer completed.
	*/
	void result(long id);
}