java.lang.Object
io.qt.internal.QtJambiSignals.MultiSignal
io.qt.core.QObject.MultiSignal
io.qt.core.QProcess.MultiSignal_finished
- Enclosing class:
- QProcess
public final class QProcess.MultiSignal_finished extends QObject.MultiSignal
Wrapper class for overloaded signals:
finished(int exitCode)
finished(int exitCode, QProcess::ExitStatus exitStatus)
-
Method Summary
Modifier and Type Method Description void
emit(int exitCode)
Deprecated.Use QProcess::finished(int, QProcess::ExitStatus) insteadvoid
emit(int exitCode, QProcess.ExitStatus exitStatus)
<A> QObject.Signal1<A>
overload(Class<A> type1)
Provides an overloaded signal by parameter type.<A, B> QObject.Signal2<A,B>
overload(Class<A> type1, Class<B> type2)
Provides an overloaded signal by parameter types.Methods inherited from class io.qt.core.QObject.MultiSignal
containingObject, disconnect, disconnectAll
-
Method Details
-
overload
@QtAllowedTypeSet(int.class) public final <A> QObject.Signal1<A> overload(Class<A> type1) throws QNoSuchSignalExceptionProvides an overloaded signal by parameter type.
The only valid call is
finished.overload(int.class)
QNoSuchSignalException
is thrown otherwise.- Overrides:
overload
in classQtJambiSignals.MultiSignal
- Type Parameters:
A
- signal parameter type- Parameters:
type1
- value of type A- Returns:
- overloaded signal
- Throws:
QNoSuchSignalException
- if signal is not available
-
overload
@QtAllowedTypeSet({int.class,ExitStatus.class}) public final <A, B> QObject.Signal2<A,B> overload(Class<A> type1, Class<B> type2) throws QNoSuchSignalExceptionProvides an overloaded signal by parameter types.
The only valid call is
finished.overload(int.class, io.qt.core.QProcess.ExitStatus.class)
QNoSuchSignalException
is thrown otherwise.- Overrides:
overload
in classQtJambiSignals.MultiSignal
- Type Parameters:
A
- signal parameter typeB
- signal parameter type- Parameters:
type1
- value of type Atype2
- value of type B- Returns:
- overloaded signal
- Throws:
QNoSuchSignalException
- if signal is not available
-
emit
Deprecated.Use QProcess::finished(int, QProcess::ExitStatus) instead -
emit
-