All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.simiacryptus.demo.refcount.ArrayContainer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020 by Andrew Charneski.
 *
 * The author 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 com.simiacryptus.demo.refcount;

import com.simiacryptus.ref.lang.ReferenceCountingBase;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Arrays;
import java.util.function.Consumer;

@SuppressWarnings("unused")
public class ArrayContainer extends ReferenceCountingBase {
  @Nullable
  public BasicType[] values;

  public ArrayContainer(BasicType... values) {
    this.values = values;
  }

  public @Override
  void _free() {
    values = null;
    super._free();
  }

  public void test() {
    assert this.values != null;
    Arrays.stream(this.values).forEach(x -> {
      x.setValue(x.getValue() + 1);
    });
  }

  @Nonnull
  @Override
  public String toString() {
    return "ArrayContainer{" + "values=" + Arrays.toString(values) + '}';
  }

  public void useClosures1(@Nonnull BasicType right) {
    assert this.values != null;
    Arrays.stream(this.values)
        .forEach((Consumer) x -> {
          x.setValue(x.getValue() + right.getValue());
        });
  }

  public void useClosures2(@Nonnull BasicType right) {
    assert this.values != null;
    Arrays.stream(this.values).forEach(new Consumer() {
      @Override
      public void accept(@Nonnull BasicType x) {
        x.setValue(x.getValue() + right.getValue());
      }

      public void _free() {
      }
    });
  }

  public void useClosures3(@Nonnull BasicType right) {
    assert this.values != null;
    Arrays.stream(this.values).forEach(new RefAwareConsumer() {
      @Override
      public void accept(@Nonnull BasicType x) {
        x.setValue(x.getValue() + right.getValue());
      }

      public @Override
      void _free() {
        super._free();
      }
    });
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy