java.lang.Object
io.qt.internal.QtJambiSignals.MultiSignal
io.qt.core.QObject.MultiSignal
io.qt.core.QProcess.MultiSignal_finished
- Enclosing class:
- QProcess
Wrapper class for overloaded signals:
finished(int exitCode)
finished(int exitCode, QProcess::ExitStatus exitStatus)
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
emit
(int exitCode) Deprecated.Use QProcess::finished(int, QProcess::ExitStatus) insteadfinal void
emit
(int exitCode, QProcess.ExitStatus exitStatus) final <A> QObject.Signal1<A>
Provides an overloaded signal by parameter type.final <A,
B> QObject.Signal2<A, B> 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 QNoSuchSignalException Provides 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 QNoSuchSignalException Provides 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
-