You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by mr...@apache.org on 2008/11/14 10:32:59 UTC

svn commit: r713958 - in /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation: ./ EventJournal.java

Author: mreutegg
Date: Fri Nov 14 01:32:58 2008
New Revision: 713958

URL: http://svn.apache.org/viewvc?rev=713958&view=rev
Log:
JCR-1849: EventJournal

Added:
    jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/
    jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/EventJournal.java   (with props)

Added: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/EventJournal.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/EventJournal.java?rev=713958&view=auto
==============================================================================
--- jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/EventJournal.java (added)
+++ jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/EventJournal.java Fri Nov 14 01:32:58 2008
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.jackrabbit.api.jsr283.observation;
+
+import javax.jcr.observation.EventIterator;
+
+/**
+ * An <code>EventJournal</code> is an extension of <code>EventIterator</code>
+ * that provides the additional method {@link #skipTo(long)}:
+ *
+ * @since JCR 2.0
+ */
+public interface EventJournal extends EventIterator {
+
+    /**
+     * Skip all elements of the iterator earlier than <code>date</code>.
+     * <p/>
+     * If an attempt is made to skip past the last element of the iterator,
+     * no exception is thrown but the subsequent {@link #nextEvent()} will fail.
+     *
+     * @param date a date that is represented by the number of milliseconds
+     *          since January 1, 1970, 00:00:00 GMT
+     */
+     public void skipTo(long date);
+}

Propchange: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/jsr283/observation/EventJournal.java
------------------------------------------------------------------------------
    svn:eol-style = native