T
- 与事件关联的上下文对象的类型
public interface WatchEvent<T>
WatchService
。
事件按其kind
进行分类 ,并有一个count
来表示事件被观察的次数。 这样可以有效地表示重复的事件。 context
方法返回与事件相关联的任何上下文。 在重复事件的情况下,所有事件的上下文是相同的。
监视事件是不可变的,安全的可供多个并发线程使用。
Modifier and Type | Interface and Description |
---|---|
static interface |
WatchEvent.Kind<T>
一种事件类型,用于识别。
|
static interface |
WatchEvent.Modifier
事件修饰符,用于量化如何 Watchable 与注册WatchService 。
|
WatchEvent.Kind<T> kind()
int count()
1
那么这是一个重复的事件。
T context()
在的情况下, ENTRY_CREATE
, ENTRY_DELETE
和ENTRY_MODIFY
事件的背景是Path
那是relative
的手表服务注册的目录,以及创建,删除或修改条目之间的路径。
null
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.