com.github.kristofa.brave.internal.Util类的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(233)

本文整理了Java中com.github.kristofa.brave.internal.Util类的一些代码示例,展示了Util类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util类的具体详情如下:
包路径:com.github.kristofa.brave.internal.Util
类名称:Util

Util介绍

[英]Utilities, typically copied in from guava, so as to avoid dependency conflicts.
[中]实用程序,通常从guava中复制,以避免依赖冲突。

代码示例

代码示例来源:origin: io.zipkin.brave/brave-core

  1. /**
  2. * Creates a new instance.
  3. *
  4. * @param state Server span state, should not be <code>null</code>
  5. */
  6. public ServerSpanThreadBinder(ServerSpanState state) {
  7. this.state = checkNotNull(state, "state");
  8. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. /**
  2. * @param endpoint Endpoint of the local service being traced.
  3. */
  4. public ThreadLocalServerClientAndLocalSpanState(Endpoint endpoint) {
  5. Util.checkNotNull(endpoint, "endpoint must be specified.");
  6. Util.checkNotBlank(endpoint.service_name, "Service name must be specified.");
  7. this.endpoint = endpoint;
  8. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o == this) return true;
  4. if (!(o instanceof Span)) return false;
  5. Span that = (Span) o;
  6. return (this.trace_id_high == that.trace_id_high)
  7. && (this.trace_id == that.trace_id)
  8. && (this.name.equals(that.name))
  9. && (this.id == that.id)
  10. && equal(this.parent_id, that.parent_id)
  11. && equal(this.timestamp, that.timestamp)
  12. && equal(this.duration, that.duration)
  13. && equal(this.annotations, that.annotations)
  14. && equal(this.binary_annotations, that.binary_annotations)
  15. && equal(this.debug, that.debug)
  16. && equal(this.shared, that.shared);
  17. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. public LoggingSpanCollector(String loggerName) {
  2. checkNotBlank(loggerName, "Null or blank loggerName");
  3. logger = Logger.getLogger(loggerName);
  4. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. public LoggingReporter(String loggerName) {
  2. checkNotBlank(loggerName, "Null or blank loggerName");
  3. logger = Logger.getLogger(loggerName);
  4. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. /**
  2. * Creates a new instance.
  3. *
  4. * @param state client span state, should not be <code>null</code>
  5. */
  6. public ClientSpanThreadBinder(ClientSpanState state) {
  7. this.state = checkNotNull(state, "state");
  8. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. BinaryAnnotation(String key, byte[] value, AnnotationType type, @Nullable Endpoint host) {
  2. this.key = checkNotBlank(key, "Null or blank key");
  3. this.value = checkNotNull(value, "Null value");
  4. this.type = type;
  5. this.host = host;
  6. }

代码示例来源:origin: xuminwlt/j360-dubbo-app-all

  1. public Slf4jLogReporter(String loggerName) {
  2. Util.checkNotBlank(loggerName, "Null or blank loggerName", new Object[0]);
  3. this.logger = LoggerFactory.getLogger(loggerName);
  4. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o == this) {
  4. return true;
  5. }
  6. if (o instanceof Endpoint) {
  7. Endpoint that = (Endpoint) o;
  8. return equal(this.service_name, that.service_name)
  9. && (this.ipv4 == that.ipv4)
  10. && (Arrays.equals(this.ipv6, that.ipv6))
  11. && equal(this.port, that.port);
  12. }
  13. return false;
  14. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. SpanId(Builder builder) {
  2. checkNotNull(builder.spanId, "spanId");
  3. this.traceIdHigh = builder.traceIdHigh;
  4. this.traceId = builder.traceId != null ? builder.traceId : builder.spanId;
  5. this.parentId = builder.nullableParentId != null ? builder.nullableParentId : this.traceId;
  6. this.spanId = builder.spanId;
  7. this.flags = builder.flags;
  8. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. BinaryAnnotation(String key, byte[] value, AnnotationType type, @Nullable Endpoint host) {
  2. this.key = checkNotBlank(key, "Null or blank key");
  3. this.value = checkNotNull(value, "Null value");
  4. this.type = type;
  5. this.host = host;
  6. }

代码示例来源:origin: com.palantir.remoting1/brave-extensions

  1. public SlfLoggingSpanCollector(String loggerName) {
  2. Util.checkNotBlank(loggerName, "loggerName must not be blank or null");
  3. log = LoggerFactory.getLogger(loggerName);
  4. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o == this) {
  4. return true;
  5. }
  6. if (o instanceof Span) {
  7. Span that = (Span) o;
  8. return (this.trace_id == that.trace_id)
  9. && (this.name.equals(that.name))
  10. && (this.id == that.id)
  11. && equal(this.parent_id, that.parent_id)
  12. && equal(this.timestamp, that.timestamp)
  13. && equal(this.duration, that.duration)
  14. && equal(this.annotations, that.annotations)
  15. && equal(this.binary_annotations, that.binary_annotations)
  16. && equal(this.debug, that.debug);
  17. }
  18. return false;
  19. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. /**
  2. * Creates a new instance.
  3. *
  4. * @param wrappedExecutor Wrapped ExecutorService to which execution will be delegated.
  5. * @param threadBinder Thread binder.
  6. */
  7. public BraveExecutorService(final ExecutorService wrappedExecutor, final ServerSpanThreadBinder threadBinder) {
  8. this.wrappedExecutor = checkNotNull(wrappedExecutor, "Null wrappedExecutor");
  9. this.threadBinder = checkNotNull(threadBinder, "Null threadBinder");
  10. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. /**
  2. * Constructor
  3. *
  4. * @param ip InetAddress of current host. If you don't have access to InetAddress you can use InetAddressUtilities#getLocalHostLANAddress()
  5. * @param port port on which current process is listening.
  6. * @param serviceName Name of the local service being traced. Should be lowercase and not <code>null</code> or empty.
  7. * @deprecated Please switch to constructor that takes 'int' for ip. This only does a conversion from the InetAddress to integer anyway
  8. * and using InetAddress can result in ns lookup and nasty side effects.
  9. */
  10. @Deprecated
  11. public ThreadLocalServerClientAndLocalSpanState(InetAddress ip, int port, String serviceName) {
  12. Util.checkNotNull(ip, "ip address must be specified.");
  13. Util.checkNotBlank(serviceName, "Service name must be specified.");
  14. endpoint = Endpoint.create(serviceName, InetAddressUtilities.toInt(ip), port);
  15. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. public LoggingSpanCollector(String loggerName) {
  2. checkNotBlank(loggerName, "Null or blank loggerName");
  3. logger = Logger.getLogger(loggerName);
  4. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o == this) {
  4. return true;
  5. }
  6. if (o instanceof Endpoint) {
  7. Endpoint that = (Endpoint) o;
  8. return this.service_name.equals(that.service_name)
  9. && this.ipv4 == that.ipv4
  10. && equal(this.port, that.port);
  11. }
  12. return false;
  13. }

代码示例来源:origin: io.zipkin.brave/brave-core

  1. /**
  2. * Creates a new instance.
  3. *
  4. * @param state local span state, cannot be <code>null</code>
  5. */
  6. public LocalSpanThreadBinder(LocalSpanState state) {
  7. this.state = checkNotNull(state, "state");
  8. }

代码示例来源:origin: com.palantir.remoting/brave-extensions

  1. public SlfLoggingSpanCollector(String loggerName) {
  2. Util.checkNotBlank(loggerName, "loggerName must not be blank or null");
  3. log = LoggerFactory.getLogger(loggerName);
  4. }

代码示例来源:origin: com.github.kristofa/brave-core

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o == this) {
  4. return true;
  5. }
  6. if (o instanceof BinaryAnnotation) {
  7. BinaryAnnotation that = (BinaryAnnotation) o;
  8. return (this.key.equals(that.key))
  9. && (Arrays.equals(this.value, that.value))
  10. && (this.type.equals(that.type))
  11. && equal(this.host, that.host);
  12. }
  13. return false;
  14. }

相关文章