You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/MultiGetJobSignals.java

32 lines
838 B

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.QMetaObject;
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(KIO.Job ) gets
emitted.
@param id the id of the request
@short File transfer completed.
*/
void result(long id);
}