Package io.sentry.transport
Class NoOpTransport
- java.lang.Object
-
- io.sentry.transport.NoOpTransport
-
- All Implemented Interfaces:
ITransport,java.io.Closeable,java.lang.AutoCloseable
@Internal public final class NoOpTransport extends java.lang.Object implements ITransport
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush(long timeoutMillis)Flushes events queued up, but keeps the client enabled.static @NotNull NoOpTransportgetInstance()voidsend(@NotNull SentryEnvelope envelope, @Nullable java.lang.Object hint)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.sentry.transport.ITransport
send
-
-
-
-
Method Detail
-
getInstance
@NotNull public static @NotNull NoOpTransport getInstance()
-
send
public void send(@NotNull @NotNull SentryEnvelope envelope, @Nullable @Nullable java.lang.Object hint) throws java.io.IOException- Specified by:
sendin interfaceITransport- Throws:
java.io.IOException
-
flush
public void flush(long timeoutMillis)
Description copied from interface:ITransportFlushes events queued up, but keeps the client enabled. Not implemented yet.- Specified by:
flushin interfaceITransport- Parameters:
timeoutMillis- time in milliseconds
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-