ICommand
public protocol ICommand : INotifier
The interface definition for a PureMVC Command.
@see org.puremvc.swift.interfaces INotification
-
Execute the
ICommand
‘s logic to handle a givenINotification
.Declaration
Swift
func execute(_ notification: INotification)
Parameters
note
an
INotification
to handle.