snowplow_tracker/emitter/mod.rs
1// Copyright (c) 2022 Snowplow Analytics Ltd. All rights reserved.
2//
3// This program is licensed to you under the Apache License Version 2.0,
4// and you may not use this file except in compliance with the Apache License Version 2.0.
5// You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
6//
7// Unless required by applicable law or agreed to in writing,
8// software distributed under the Apache License Version 2.0 is distributed on an
9// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10// See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
11
12mod batch_emitter;
13mod emitter;
14mod retry_policy;
15
16pub use batch_emitter::BatchEmitter;
17pub use emitter::Emitter;
18pub use retry_policy::RetryPolicy;