We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f385976 commit c0a06bcCopy full SHA for c0a06bc
python/pyspark/streaming/jtime.py
@@ -126,14 +126,12 @@ def isMultipbleOf(duration):
126
Duration._is_duration(duration)
127
return self._millis % duration._millis == 0
128
129
- def until(time, interval):
130
- raise NotImplementedError
131
-
132
- def to(time, interval):
133
134
135
@classmethod
136
def _is_time(self, instance):
137
""" is instance Time """
138
if not isinstance(instance, Time):
139
raise TypeError
+
+# TODO: implement until
+# TODO: implement to
0 commit comments