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 setCurrentAppleEventAndReplyEventWithSuspensionID (NSAppleEventManager.SuspensionID)
Given a nonzero
suspensionID
returned by an invocation of suspendCurrentAppleEvent()
, sets the values that will be returned by subsequent invocations of currentAppleEvent
and currentReplyAppleEvent
to be the event whose handling was suspended and its corresponding reply event, respectively.
非ゼロのsuspensionID
がsuspendCurrentAppleEvent()
の発動によって返されて指定されることで、すぐ後に起こるcurrentAppleEvent
とcurrentReplyAppleEvent
の発動によって返される値を、それぞれ処理が休止されたイベントおよびそれの該当する返答イベントになるように設定します。
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を返します。