func appleEvent (forSuspensionID : NSAppleEventManager.SuspensionID) -> NSAppleEventDescriptor
Given a nonzero
suspensionID
returned by an invocation of suspendCurrentAppleEvent()
, returns the descriptor for the event whose handling was suspended.
非ゼロのsuspensionID
がsuspendCurrentAppleEvent()
の発動によって返されて指定されることで、取り扱いが休止されたイベントに対する記述子を返します。
var currentAppleEvent : NSAppleEventDescriptor?
Returns the descriptor for
currentAppleEvent
if an Apple event is being handled on the current thread.
あるアップルイベントが現在のスレッド上で取り扱われているならば、currentAppleEvent
に対する記述子を返します。
var currentReplyAppleEvent : NSAppleEventDescriptor?
Returns the corresponding reply event descriptor if an Apple event is being handled on the current thread.
あるアップルイベントが現在のスレッド上で取り扱われているならば、該当する返答イベント記述子を返します。
func replyAppleEvent (forSuspensionID : NSAppleEventManager.SuspensionID) -> NSAppleEventDescriptor
Given a nonzero
suspensionID
returned by an invocation of suspendCurrentAppleEvent()
, returns the corresponding reply event descriptor.
非ゼロのsuspensionID
がsuspendCurrentAppleEvent()
の発動によって返されて指定されることで、該当する返答イベント記述子を返します。
func resume(withSuspensionID : NSAppleEventManager.SuspensionID)
Given a nonzero
suspensionID
returned by an invocation of suspendCurrentAppleEvent()
, signal that handling of the suspended event may now continue.
非ゼロのsuspensionID
がsuspendCurrentAppleEvent()
の発動によって返されて指定されることで、休止されたイベントの取り扱いが今続きを行われるように合図します。
func suspendCurrentAppleEvent () -> NSAppleEventManager.SuspensionID?
Suspends the handling of the current event and returns an ID that must be used to resume the handling of the event if an Apple event is being handled on the current thread.
現在のイベントの処理を休止して、アップルイベントが現在のスレッド上で処理されているならば、そのイベントの処理を再開するために使われなければならないIDを返します。
typealias NSAppleEventManager.SuspensionID
Identifies an Apple event whose handling has been suspended. Can be used to resume handling of the Apple event.
それの処理がサスペンド(一時停止)されているあるアップルイベントを識別します。アップルイベントの処理をレジューム(再開)するのに使われることができます。